diff --git a/src/content/docs/en/guides/images.mdx b/src/content/docs/en/guides/images.mdx
index a126d37c82164..3c30a681cef74 100644
--- a/src/content/docs/en/guides/images.mdx
+++ b/src/content/docs/en/guides/images.mdx
@@ -396,7 +396,7 @@ const allBlogPosts = await getCollection("blog");
The `` component, like any other Astro component, is unavailable inside UI framework components.
-But, you can pass the static content generated by `` to a framework component inside a `.astro` file as children or using a [named ``](/en/guides/framework-components/#can-i-use-astro-components-inside-my-framework-components):
+But, you can pass the static content generated by `` to a framework component inside a `.astro` file [as children](/en/guides/framework-components/#passing-children-to-framework-components) or using a [named ``](/en/guides/framework-components/#can-i-use-astro-components-inside-my-framework-components):
```astro title="src/components/ImageWrapper.astro"