diff --git a/i18n/en/docusaurus-plugin-content-docs/current/guides/tech/with-nuxtjs.mdx b/i18n/en/docusaurus-plugin-content-docs/current/guides/tech/with-nuxtjs.mdx
index 60f1e5e907..d7e6508475 100644
--- a/i18n/en/docusaurus-plugin-content-docs/current/guides/tech/with-nuxtjs.mdx
+++ b/i18n/en/docusaurus-plugin-content-docs/current/guides/tech/with-nuxtjs.mdx
@@ -73,8 +73,7 @@ Create a root for this page inside the `app` layer:
├── src
│ ├── app
│ │ ├── routes
-│ │ │ ├── home
-│ │ │ │ ├── index.vue
+│ │ │ ├── index.vue
│ ├── pages
│ │ ├── home
│ │ │ ├── ui
@@ -84,7 +83,7 @@ Create a root for this page inside the `app` layer:
Add your page component inside the `index.vue` file:
-```html title="pages/home/ui/home-page.vue"
+```html title="src/app/routes/index.vue"
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/guides/tech/with-nuxtjs.mdx b/i18n/ru/docusaurus-plugin-content-docs/current/guides/tech/with-nuxtjs.mdx
index 128201ac11..69977c6503 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/guides/tech/with-nuxtjs.mdx
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/guides/tech/with-nuxtjs.mdx
@@ -72,8 +72,7 @@ export { default as HomePage } from './ui/home-page';
├── src
│ ├── app
│ │ ├── routes
-│ │ │ ├── home
-│ │ │ │ ├── index.vue
+│ │ │ ├── index.vue
│ ├── pages
│ │ ├── home
│ │ │ ├── ui
@@ -83,7 +82,7 @@ export { default as HomePage } from './ui/home-page';
Добавьте внутрь `index.vue` файла компонент вашей страницы:
-```html title="pages/home/ui/home-page.vue"
+```html title="src/app/routes/index.vue"