diff --git a/src/content/docs/en/guides/view-transitions.mdx b/src/content/docs/en/guides/view-transitions.mdx
index 5ca16210a1291..f2c1ea2415e08 100644
--- a/src/content/docs/en/guides/view-transitions.mdx
+++ b/src/content/docs/en/guides/view-transitions.mdx
@@ -3,6 +3,7 @@ title: View transitions
description: Enable seamless navigation between pages in Astro with view transitions.
i18nReady: true
---
+import ReadMore from '~/components/ReadMore.astro';
import Since from '~/components/Since.astro'
import { Steps } from '@astrojs/starlight/components'
@@ -319,7 +320,7 @@ Links with the `data-astro-reload` attribute will be ignored by the router and a
### Trigger navigation
-You can also trigger client-side navigation via events not normally listened to by the `` router using `navigate`. This function from the `astro:transitions/client` module can be used in scripts, and in framework components that are hydrated with a [client directive](/en/reference/directives-reference/#client-directives).
+You can also trigger client-side navigation via events not normally listened to by the `` router using [`navigate()`](/en/reference/modules/astro-transitions/#navigate). This function from the `astro:transitions/client` module can be used in scripts, and in framework components that are hydrated with a [client directive](/en/reference/directives-reference/#client-directives).
The following example shows an Astro component that navigates a visitor to another page they select from a menu:
@@ -390,27 +391,17 @@ import { ClientRouter } from "astro:transitions";