diff --git a/website/docs/topics/anatomy-of-unleash.mdx b/website/docs/topics/anatomy-of-unleash.mdx
index a567e2eb14..992f2bbda4 100644
--- a/website/docs/topics/anatomy-of-unleash.mdx
+++ b/website/docs/topics/anatomy-of-unleash.mdx
@@ -2,6 +2,7 @@
title: Anatomy of Unleash
---
import Figure from '@site/src/components/Figure/Figure.tsx'
+import img1 from '/img/anatomy-of-unleash-environment.png'
Unleash has many different components on different levels. This guide is here to give you a conceptual overview over how Unleash works. It covers the various components that exist within an Unleash system and how they interact with each other and with external applications. The diagrams are intended to help you understand the fundamental building blocks, such as [projects](../user_guide/projects.md), [environments](../user_guide/environments.md), [variants](../advanced/feature-toggle-variants.md) and, of course, [feature toggles](../reference/feature-toggles.mdx).
@@ -28,7 +29,7 @@ All Unleash instances must have at least one project at any given time. New inst
Pro and Enterprise customers can create, rename, and delete projects as they wish (as long as there is always **at least one project**). Open-source users, on the other hand, only get access to the default project.
-
+
## Environments and project environments
diff --git a/website/src/components/Figure/Figure.tsx b/website/src/components/Figure/Figure.tsx
index 1592a0fe0d..0c598573a4 100644
--- a/website/src/components/Figure/Figure.tsx
+++ b/website/src/components/Figure/Figure.tsx
@@ -80,7 +80,7 @@ type Props = {
const Component: React.FC = ({ img, alt, caption }) => {
return (
-
+ {caption}
);