diff --git a/docs/evaluate/development-production-features/temporal-nexus.mdx b/docs/evaluate/development-production-features/temporal-nexus.mdx
index 85b4664e17..9261274fe5 100644
--- a/docs/evaluate/development-production-features/temporal-nexus.mdx
+++ b/docs/evaluate/development-production-features/temporal-nexus.mdx
@@ -32,6 +32,7 @@ keywords:
---
import { RelatedReadContainer, RelatedReadItem } from '@site/src/components';
+import ThemedImage from '@theme/ThemedImage';
:::tip SUPPORT, STABILITY, and DEPENDENCY INFO
@@ -49,6 +50,21 @@ Nexus supports cross-team, cross-domain, cross-namespace, multi-region, and mult
Unlike other forms of inter-service communication, Nexus combines a familiar programming model with the resiliency of the Temporal Platform and its queue-based Worker architecture.
+Use the following decision tree to help determine if Nexus is right for your use case:
+
+
+
### Benefits
- **Integrated Temporal experience** \- with improved security, observability, and reliability.
diff --git a/src/components/images/EnlargeImage.js b/src/components/images/EnlargeImage.js
new file mode 100644
index 0000000000..94afefdf2e
--- /dev/null
+++ b/src/components/images/EnlargeImage.js
@@ -0,0 +1,13 @@
+const EnlargeImage = ({ src, alt, ariaLabel }) => {
+ const label = ariaLabel || alt;
+
+ return (
+
+ );
+};
+
+export default EnlargeImage;
diff --git a/src/components/index.js b/src/components/index.js
index 54dba7ea8e..07b4ad9ef6 100644
--- a/src/components/index.js
+++ b/src/components/index.js
@@ -12,6 +12,7 @@ export { default as JsonTable } from './formatting/JsonTable';
// Image components
export { default as CaptionedImage } from './images/CaptionedImage';
+export { default as EnlargeImage } from './images/EnlargeImage';
export { default as ZoomingImage } from './images/ZoomingImage';
// Information components
diff --git a/static/diagrams/nexusadoptiondark.png b/static/diagrams/nexusadoptiondark.png
new file mode 100644
index 0000000000..75d7a5ee66
Binary files /dev/null and b/static/diagrams/nexusadoptiondark.png differ
diff --git a/static/diagrams/nexusadoptionlight.png b/static/diagrams/nexusadoptionlight.png
new file mode 100644
index 0000000000..d8270095a2
Binary files /dev/null and b/static/diagrams/nexusadoptionlight.png differ