diff --git a/docs/content/0.index.md b/docs/content/0.index.md index e8d39f0e33..07fca3a89a 100644 --- a/docs/content/0.index.md +++ b/docs/content/0.index.md @@ -1,5 +1,6 @@ --- title: 'The Intuitive Web Framework' +head.titleTemplate: 'Nuxt: %s' description: 'Build your next Vue.js application with confidence using Nuxt. An open source framework under MIT license that makes web development simple and powerful.' showcasesListId: 505 --- diff --git a/docs/content/1.docs/1.getting-started/1.introduction.md b/docs/content/1.docs/1.getting-started/1.introduction.md index f3a5b08639..a56b8a626e 100644 --- a/docs/content/1.docs/1.getting-started/1.introduction.md +++ b/docs/content/1.docs/1.getting-started/1.introduction.md @@ -1,6 +1,5 @@ --- navigation.icon: uil:info-circle -titleTemplate: '%s' description: Nuxt's goal is to make web development intuitive and performant with a great DX in mind. --- diff --git a/docs/content/1.docs/1.getting-started/10.upgrade-guide/_dir.yml b/docs/content/1.docs/1.getting-started/10.upgrade-guide/_dir.yml deleted file mode 100644 index a4707ca102..0000000000 --- a/docs/content/1.docs/1.getting-started/10.upgrade-guide/_dir.yml +++ /dev/null @@ -1 +0,0 @@ -navigation.icon: uil:arrow-circle-up diff --git a/docs/content/1.docs/1.getting-started/_dir.yml b/docs/content/1.docs/1.getting-started/_dir.yml index 95c565f6e0..eb7f9d88be 100644 --- a/docs/content/1.docs/1.getting-started/_dir.yml +++ b/docs/content/1.docs/1.getting-started/_dir.yml @@ -1 +1,3 @@ title: Get Started +titleTemplate: '%s · Get Started with Nuxt' +image: '/socials/get-started.png' diff --git a/docs/content/1.docs/2.guide/1.concepts/_dir.yml b/docs/content/1.docs/2.guide/1.concepts/_dir.yml index 1da929584e..daffc17367 100644 --- a/docs/content/1.docs/2.guide/1.concepts/_dir.yml +++ b/docs/content/1.docs/2.guide/1.concepts/_dir.yml @@ -1,3 +1,4 @@ title: Key Concepts titleTemplate: '%s · Nuxt Concepts' navigation.icon: uil:award-alt +image: '/socials/key-concepts.png' diff --git a/docs/content/1.docs/2.guide/2.directory-structure/0.nuxt.md b/docs/content/1.docs/2.guide/2.directory-structure/0.nuxt.md index 03d0d2fa0d..6647d16548 100644 --- a/docs/content/1.docs/2.guide/2.directory-structure/0.nuxt.md +++ b/docs/content/1.docs/2.guide/2.directory-structure/0.nuxt.md @@ -2,7 +2,7 @@ navigation.icon: IconDirectory title: ".nuxt" description: "Nuxt uses the .nuxt/ directory in development to generate your Vue application." -head.title: ".nuxt" +head.title: ".nuxt/" --- # .nuxt Directory diff --git a/docs/content/1.docs/2.guide/2.directory-structure/0.output.md b/docs/content/1.docs/2.guide/2.directory-structure/0.output.md index cf233fe132..f051984a52 100644 --- a/docs/content/1.docs/2.guide/2.directory-structure/0.output.md +++ b/docs/content/1.docs/2.guide/2.directory-structure/0.output.md @@ -2,7 +2,7 @@ navigation.icon: IconDirectory title: ".output" description: "Nuxt creates the .output/ directory when building your application for production." -head.title: ".output" +head.title: ".output/" --- # Output Directory diff --git a/docs/content/1.docs/2.guide/2.directory-structure/1.assets.md b/docs/content/1.docs/2.guide/2.directory-structure/1.assets.md index be182877ce..5e4dc73743 100644 --- a/docs/content/1.docs/2.guide/2.directory-structure/1.assets.md +++ b/docs/content/1.docs/2.guide/2.directory-structure/1.assets.md @@ -2,7 +2,7 @@ navigation.icon: IconDirectory title: "assets" description: "The assets/ directory is used to add all the website's assets that the build tool will process." -head.title: "Assets" +head.title: "assets/" --- # Assets Directory diff --git a/docs/content/1.docs/2.guide/2.directory-structure/1.components.md b/docs/content/1.docs/2.guide/2.directory-structure/1.components.md index 36b29c790a..568609fc09 100644 --- a/docs/content/1.docs/2.guide/2.directory-structure/1.components.md +++ b/docs/content/1.docs/2.guide/2.directory-structure/1.components.md @@ -2,7 +2,7 @@ navigation.icon: IconDirectory title: "components" description: "The components/ directory is where you put all your Vue components." -head.title: "Components" +head.title: "components/" --- # Components Directory diff --git a/docs/content/1.docs/2.guide/2.directory-structure/1.composables.md b/docs/content/1.docs/2.guide/2.directory-structure/1.composables.md index bc5358f2f8..bd7e9f5153 100644 --- a/docs/content/1.docs/2.guide/2.directory-structure/1.composables.md +++ b/docs/content/1.docs/2.guide/2.directory-structure/1.composables.md @@ -1,7 +1,7 @@ --- navigation.icon: IconDirectory title: 'composables' -head.title: Composables +head.title: 'composables/' description: Use the composables/ directory to auto-import your Vue composables into your application. --- diff --git a/docs/content/1.docs/2.guide/2.directory-structure/1.content.md b/docs/content/1.docs/2.guide/2.directory-structure/1.content.md index e20cae4a0a..283f8177a1 100644 --- a/docs/content/1.docs/2.guide/2.directory-structure/1.content.md +++ b/docs/content/1.docs/2.guide/2.directory-structure/1.content.md @@ -1,7 +1,7 @@ --- navigation.icon: IconDirectory title: 'content' -head.title: Content +head.title: 'content/' description: The Content module reads the content/ directory to create a file-based CMS for your application. --- diff --git a/docs/content/1.docs/2.guide/2.directory-structure/1.layouts.md b/docs/content/1.docs/2.guide/2.directory-structure/1.layouts.md index 9062dbe097..476c05d3ed 100644 --- a/docs/content/1.docs/2.guide/2.directory-structure/1.layouts.md +++ b/docs/content/1.docs/2.guide/2.directory-structure/1.layouts.md @@ -2,7 +2,7 @@ navigation.icon: IconDirectory title: "layouts" description: "Nuxt provides a layouts framework to extract common UI patterns into reusable layouts." -head.title: "Layouts" +head.title: "layouts/" --- # Layouts Directory diff --git a/docs/content/1.docs/2.guide/2.directory-structure/1.middleware.md b/docs/content/1.docs/2.guide/2.directory-structure/1.middleware.md index 7428dba67e..e60f4aafcb 100644 --- a/docs/content/1.docs/2.guide/2.directory-structure/1.middleware.md +++ b/docs/content/1.docs/2.guide/2.directory-structure/1.middleware.md @@ -2,7 +2,7 @@ navigation.icon: IconDirectory title: "middleware" description: "Nuxt provides middleware to run code before navigating to a particular route." -head.title: "Middleware" +head.title: "middleware/" --- # Middleware Directory diff --git a/docs/content/1.docs/2.guide/2.directory-structure/1.node_modules.md b/docs/content/1.docs/2.guide/2.directory-structure/1.node_modules.md index 1435329006..93fc765868 100644 --- a/docs/content/1.docs/2.guide/2.directory-structure/1.node_modules.md +++ b/docs/content/1.docs/2.guide/2.directory-structure/1.node_modules.md @@ -2,7 +2,7 @@ navigation.icon: IconDirectory title: "node_modules" description: "The package manager stores the dependencies of your project in the node_modules/ directory." -head.title: "Node Modules" +head.title: "node_modules/" --- # Node modules Directory diff --git a/docs/content/1.docs/2.guide/2.directory-structure/1.pages.md b/docs/content/1.docs/2.guide/2.directory-structure/1.pages.md index ddc5dbd6ec..3e66faaf8c 100644 --- a/docs/content/1.docs/2.guide/2.directory-structure/1.pages.md +++ b/docs/content/1.docs/2.guide/2.directory-structure/1.pages.md @@ -2,7 +2,7 @@ navigation.icon: IconDirectory title: "pages" description: "Nuxt provides a file-based routing to create routes within your web application." -head.title: "Pages" +head.title: "pages/" --- # Pages Directory diff --git a/docs/content/1.docs/2.guide/2.directory-structure/1.plugins.md b/docs/content/1.docs/2.guide/2.directory-structure/1.plugins.md index a80a500dbf..c181c53ab1 100644 --- a/docs/content/1.docs/2.guide/2.directory-structure/1.plugins.md +++ b/docs/content/1.docs/2.guide/2.directory-structure/1.plugins.md @@ -2,7 +2,7 @@ navigation.icon: IconDirectory title: "plugins" description: "Nuxt reads the files in your plugins directory and loads them at the creation of the Vue application." -head.title: "Plugins" +head.title: "plugins/" --- # Plugins Directory diff --git a/docs/content/1.docs/2.guide/2.directory-structure/1.public.md b/docs/content/1.docs/2.guide/2.directory-structure/1.public.md index 1a3ea384a9..0871b867b9 100644 --- a/docs/content/1.docs/2.guide/2.directory-structure/1.public.md +++ b/docs/content/1.docs/2.guide/2.directory-structure/1.public.md @@ -2,7 +2,7 @@ navigation.icon: IconDirectory title: "public" description: "The public/ directory is used to serve your website's static assets." -head.title: "Public" +head.title: "public/" --- # Public Directory diff --git a/docs/content/1.docs/2.guide/2.directory-structure/1.server.md b/docs/content/1.docs/2.guide/2.directory-structure/1.server.md index 1a9726c78d..4f2508640b 100644 --- a/docs/content/1.docs/2.guide/2.directory-structure/1.server.md +++ b/docs/content/1.docs/2.guide/2.directory-structure/1.server.md @@ -1,7 +1,7 @@ --- navigation.icon: IconDirectory title: server -head.title: Server +head.title: 'server/' description: The server/ directory is used to register API and server handlers to your application. --- diff --git a/docs/content/1.docs/2.guide/2.directory-structure/1.utils.md b/docs/content/1.docs/2.guide/2.directory-structure/1.utils.md index df43949dda..a4d2ab83fd 100644 --- a/docs/content/1.docs/2.guide/2.directory-structure/1.utils.md +++ b/docs/content/1.docs/2.guide/2.directory-structure/1.utils.md @@ -1,7 +1,7 @@ --- navigation.icon: IconDirectory title: 'utils' -head.title: Utils +head.title: 'utils/' description: Use the utils/ directory to auto-import your utility functions throughout your application. --- diff --git a/docs/content/1.docs/2.guide/2.directory-structure/2.gitignore.md b/docs/content/1.docs/2.guide/2.directory-structure/2.gitignore.md index b82f4221f8..8760500a31 100644 --- a/docs/content/1.docs/2.guide/2.directory-structure/2.gitignore.md +++ b/docs/content/1.docs/2.guide/2.directory-structure/2.gitignore.md @@ -2,7 +2,7 @@ navigation.icon: IconFile title: ".gitignore" description: "A .gitignore file specifies intentionally untracked files that git should ignore." -head.title: "Git Ignore File" +head.title: ".gitignore" --- # Git Ignore File diff --git a/docs/content/1.docs/2.guide/2.directory-structure/2.nuxtignore.md b/docs/content/1.docs/2.guide/2.directory-structure/2.nuxtignore.md index 05c3325131..d6e719b3f9 100644 --- a/docs/content/1.docs/2.guide/2.directory-structure/2.nuxtignore.md +++ b/docs/content/1.docs/2.guide/2.directory-structure/2.nuxtignore.md @@ -1,7 +1,7 @@ --- navigation.icon: IconFile title: .nuxtignore -head.title: Nuxt Ignore File +head.title: '.nuxtignore' description: The .nuxtignore file lets Nuxt ignore files in your project’s root directory during the build phase. --- diff --git a/docs/content/1.docs/2.guide/2.directory-structure/3.app.config.md b/docs/content/1.docs/2.guide/2.directory-structure/3.app.config.md index efbadb0c71..2710b76fc1 100644 --- a/docs/content/1.docs/2.guide/2.directory-structure/3.app.config.md +++ b/docs/content/1.docs/2.guide/2.directory-structure/3.app.config.md @@ -1,7 +1,7 @@ --- navigation.icon: IconFile title: app.config.ts -head.title: Nuxt App Config +head.title: 'app.config.ts' description: Nuxt 3 provides the app.config file to expose reactive configuration within your application. --- diff --git a/docs/content/1.docs/2.guide/2.directory-structure/3.app.md b/docs/content/1.docs/2.guide/2.directory-structure/3.app.md index 2912d25e8a..dc8a5744ec 100644 --- a/docs/content/1.docs/2.guide/2.directory-structure/3.app.md +++ b/docs/content/1.docs/2.guide/2.directory-structure/3.app.md @@ -2,7 +2,7 @@ navigation.icon: IconFile title: "app.vue" description: "The app.vue file is the main component in your Nuxt 3 applications." -head.title: "App File" +head.title: "app.vue" --- # App file diff --git a/docs/content/1.docs/2.guide/2.directory-structure/3.nuxt.config.md b/docs/content/1.docs/2.guide/2.directory-structure/3.nuxt.config.md index 12c13e2e9e..fda0cee7b8 100644 --- a/docs/content/1.docs/2.guide/2.directory-structure/3.nuxt.config.md +++ b/docs/content/1.docs/2.guide/2.directory-structure/3.nuxt.config.md @@ -2,7 +2,7 @@ navigation.icon: IconFile title: "nuxt.config.ts" description: "Nuxt can be easily configured with a single nuxt.config file." -head.title: "Nuxt Configuration File" +head.title: "nuxt.config.ts" --- # Nuxt Config File diff --git a/docs/content/1.docs/2.guide/2.directory-structure/3.package.md b/docs/content/1.docs/2.guide/2.directory-structure/3.package.md index 26c51f8390..e634262559 100644 --- a/docs/content/1.docs/2.guide/2.directory-structure/3.package.md +++ b/docs/content/1.docs/2.guide/2.directory-structure/3.package.md @@ -1,7 +1,7 @@ --- navigation.icon: IconFile title: package.json -head.title: Package.json File +head.title: package.json description: The package.json file contains all the dependencies and scripts for your application. --- diff --git a/docs/content/1.docs/2.guide/2.directory-structure/3.tsconfig.md b/docs/content/1.docs/2.guide/2.directory-structure/3.tsconfig.md index 3ee3e1d499..8210ce9d4c 100644 --- a/docs/content/1.docs/2.guide/2.directory-structure/3.tsconfig.md +++ b/docs/content/1.docs/2.guide/2.directory-structure/3.tsconfig.md @@ -2,7 +2,7 @@ navigation.icon: IconFile title: "tsconfig.json" description: "Nuxt generates a .nuxt/tsconfig.json file with sensible defaults and your aliases." -head.title: "TypeScript Config File" +head.title: "tsconfig.json" --- # TypeScript Configuration File diff --git a/docs/content/1.docs/2.guide/2.directory-structure/_dir.yml b/docs/content/1.docs/2.guide/2.directory-structure/_dir.yml index 9cb2d63677..40e1114093 100644 --- a/docs/content/1.docs/2.guide/2.directory-structure/_dir.yml +++ b/docs/content/1.docs/2.guide/2.directory-structure/_dir.yml @@ -1,3 +1,4 @@ title: Directory Structure titleTemplate: '%s · Nuxt Directory Structure' navigation.icon: uil:folder-open +image: '/socials/directory-structure.png' diff --git a/docs/content/1.docs/2.guide/3.deploy/_dir.yml b/docs/content/1.docs/2.guide/3.deploy/_dir.yml deleted file mode 100644 index 0d19ecf0bc..0000000000 --- a/docs/content/1.docs/2.guide/3.deploy/_dir.yml +++ /dev/null @@ -1,2 +0,0 @@ -title: Deploy -navigation.icon: uil:cloud-check diff --git a/docs/content/1.docs/2.guide/3.deploy/providers/_dir.yml b/docs/content/1.docs/2.guide/3.deploy/providers/_dir.yml deleted file mode 100644 index 9a286def08..0000000000 --- a/docs/content/1.docs/2.guide/3.deploy/providers/_dir.yml +++ /dev/null @@ -1 +0,0 @@ -navigation: false diff --git a/docs/content/1.docs/2.guide/4.going-further/1.internals.md b/docs/content/1.docs/2.guide/3.going-further/1.internals.md similarity index 100% rename from docs/content/1.docs/2.guide/4.going-further/1.internals.md rename to docs/content/1.docs/2.guide/3.going-further/1.internals.md diff --git a/docs/content/1.docs/2.guide/4.going-further/10.runtime-config.md b/docs/content/1.docs/2.guide/3.going-further/10.runtime-config.md similarity index 100% rename from docs/content/1.docs/2.guide/4.going-further/10.runtime-config.md rename to docs/content/1.docs/2.guide/3.going-further/10.runtime-config.md diff --git a/docs/content/1.docs/2.guide/4.going-further/11.edge-channel.md b/docs/content/1.docs/2.guide/3.going-further/11.edge-channel.md similarity index 100% rename from docs/content/1.docs/2.guide/4.going-further/11.edge-channel.md rename to docs/content/1.docs/2.guide/3.going-further/11.edge-channel.md diff --git a/docs/content/1.docs/2.guide/4.going-further/2.hooks.md b/docs/content/1.docs/2.guide/3.going-further/2.hooks.md similarity index 100% rename from docs/content/1.docs/2.guide/4.going-further/2.hooks.md rename to docs/content/1.docs/2.guide/3.going-further/2.hooks.md diff --git a/docs/content/1.docs/2.guide/4.going-further/3.modules.md b/docs/content/1.docs/2.guide/3.going-further/3.modules.md similarity index 100% rename from docs/content/1.docs/2.guide/4.going-further/3.modules.md rename to docs/content/1.docs/2.guide/3.going-further/3.modules.md diff --git a/docs/content/1.docs/2.guide/4.going-further/4.kit.md b/docs/content/1.docs/2.guide/3.going-further/4.kit.md similarity index 100% rename from docs/content/1.docs/2.guide/4.going-further/4.kit.md rename to docs/content/1.docs/2.guide/3.going-further/4.kit.md diff --git a/docs/content/1.docs/2.guide/4.going-further/6.nuxt-app.md b/docs/content/1.docs/2.guide/3.going-further/6.nuxt-app.md similarity index 100% rename from docs/content/1.docs/2.guide/4.going-further/6.nuxt-app.md rename to docs/content/1.docs/2.guide/3.going-further/6.nuxt-app.md diff --git a/docs/content/1.docs/2.guide/3.going-further/_dir.yml b/docs/content/1.docs/2.guide/3.going-further/_dir.yml new file mode 100644 index 0000000000..1234069f49 --- /dev/null +++ b/docs/content/1.docs/2.guide/3.going-further/_dir.yml @@ -0,0 +1,4 @@ +title: Going further +titleTemplate: '%s · Nuxt Advanced' +navigation.icon: uil:star +image: '/socials/going-further.png' diff --git a/docs/content/1.docs/2.guide/4.going-further/index.md b/docs/content/1.docs/2.guide/3.going-further/index.md similarity index 100% rename from docs/content/1.docs/2.guide/4.going-further/index.md rename to docs/content/1.docs/2.guide/3.going-further/index.md diff --git a/docs/content/1.docs/2.guide/4.going-further/_dir.yml b/docs/content/1.docs/2.guide/4.going-further/_dir.yml deleted file mode 100644 index d1d1f28174..0000000000 --- a/docs/content/1.docs/2.guide/4.going-further/_dir.yml +++ /dev/null @@ -1,2 +0,0 @@ -title: Going further -navigation.icon: uil:star diff --git a/docs/content/1.docs/2.guide/_dir.yml b/docs/content/1.docs/2.guide/_dir.yml new file mode 100644 index 0000000000..437b9029de --- /dev/null +++ b/docs/content/1.docs/2.guide/_dir.yml @@ -0,0 +1 @@ +image: '/socials/guide.png' diff --git a/docs/content/1.docs/3.api/1.composables/on-before-route-leave.md b/docs/content/1.docs/3.api/3.utils/on-before-route-leave.md similarity index 100% rename from docs/content/1.docs/3.api/1.composables/on-before-route-leave.md rename to docs/content/1.docs/3.api/3.utils/on-before-route-leave.md diff --git a/docs/content/1.docs/3.api/1.composables/on-before-route-update.md b/docs/content/1.docs/3.api/3.utils/on-before-route-update.md similarity index 100% rename from docs/content/1.docs/3.api/1.composables/on-before-route-update.md rename to docs/content/1.docs/3.api/3.utils/on-before-route-update.md diff --git a/docs/content/1.docs/3.api/_dir.yml b/docs/content/1.docs/3.api/_dir.yml index 04d91e0c59..4a846af85b 100644 --- a/docs/content/1.docs/3.api/_dir.yml +++ b/docs/content/1.docs/3.api/_dir.yml @@ -1 +1,2 @@ title: API +image: '/socials/api.png' diff --git a/docs/content/1.docs/4.examples/_dir.yml b/docs/content/1.docs/4.examples/_dir.yml new file mode 100644 index 0000000000..fea7abcff4 --- /dev/null +++ b/docs/content/1.docs/4.examples/_dir.yml @@ -0,0 +1 @@ +image: '/socials/examples.png' diff --git a/docs/content/1.docs/5.community/_dir.yml b/docs/content/1.docs/5.community/_dir.yml new file mode 100644 index 0000000000..291a16befb --- /dev/null +++ b/docs/content/1.docs/5.community/_dir.yml @@ -0,0 +1 @@ +image: '/socials/community.png' diff --git a/docs/content/1.docs/6.bridge/_dir.yml b/docs/content/1.docs/6.bridge/_dir.yml index 044572d59d..ed369ccb07 100644 --- a/docs/content/1.docs/6.bridge/_dir.yml +++ b/docs/content/1.docs/6.bridge/_dir.yml @@ -1 +1,2 @@ titleTemplate: 'Migrate to Bridge: %s' +image: '/socials/guide.png' diff --git a/docs/content/1.docs/7.migration/_dir.yml b/docs/content/1.docs/7.migration/_dir.yml index f40790014c..d01b6d3917 100644 --- a/docs/content/1.docs/7.migration/_dir.yml +++ b/docs/content/1.docs/7.migration/_dir.yml @@ -1 +1,2 @@ titleTemplate: 'Migrate to Nuxt 3: %s' +image: '/socials/guide.png' diff --git a/docs/content/2.modules.md b/docs/content/2.modules.md index 4a1e913161..42b4abbaf0 100644 --- a/docs/content/2.modules.md +++ b/docs/content/2.modules.md @@ -2,6 +2,7 @@ title: Modules description: Discover our list of modules to supercharge your Nuxt project. Created by the Nuxt team and community. navigation.icon: ph:puzzle-piece +image: '/socials/modules.png' --- ::modules-hero diff --git a/docs/content/3.showcase.md b/docs/content/3.showcase.md index d22ff810d4..1e9974cfca 100644 --- a/docs/content/3.showcase.md +++ b/docs/content/3.showcase.md @@ -2,6 +2,7 @@ title: Showcase description: Discover our selection of websites built with Nuxt. This collection is powered by VueTelescope. navigation.icon: icon-park-outline:new-computer +image: '/socials/showcase.png' --- ::showcases-hero diff --git a/docs/content/4.support/1.solutions.md b/docs/content/4.support/1.solutions.md index a66687d928..87400a1935 100644 --- a/docs/content/4.support/1.solutions.md +++ b/docs/content/4.support/1.solutions.md @@ -1,6 +1,7 @@ --- title: Solutions description: Find experts near you to help you to build and enhance your project. +image: '/socials/support.png' --- ::support-hero diff --git a/docs/content/4.support/2.agencies/1.index.md b/docs/content/4.support/2.agencies/1.index.md index cce25356d2..52e0bffff3 100644 --- a/docs/content/4.support/2.agencies/1.index.md +++ b/docs/content/4.support/2.agencies/1.index.md @@ -1,6 +1,7 @@ --- -title: Agencies +title: Nuxt Partner Agencies description: Consult our agency partner catalog and find an agency near you with the right set of skills. +head.titleTemplate: '%s' --- ::agencies-hero diff --git a/docs/content/4.support/2.agencies/_dir.yml b/docs/content/4.support/2.agencies/_dir.yml new file mode 100644 index 0000000000..8d7f2b2096 --- /dev/null +++ b/docs/content/4.support/2.agencies/_dir.yml @@ -0,0 +1,2 @@ +image: '/socials/agencies.png' +titleTemplate: '%s · Nuxt Agencies' diff --git a/docs/content/4.support/3.us.md b/docs/content/4.support/3.us.md index 4c3ff16ec2..1e778e6aa4 100644 --- a/docs/content/4.support/3.us.md +++ b/docs/content/4.support/3.us.md @@ -1,6 +1,7 @@ --- title: Sponsors description: Nuxt is an open-source framework totally free to use thanks to our generous sponsors. +image: '/socials/sponsors.png' --- ::sponsors-hero diff --git a/docs/content/4.support/4.jobs.md b/docs/content/4.support/4.jobs.md index bb04eb0065..c52404ffd1 100644 --- a/docs/content/4.support/4.jobs.md +++ b/docs/content/4.support/4.jobs.md @@ -1,6 +1,7 @@ --- title: Jobs description: Browse available openings for coding with Vue and Nuxt all over the world. +image: '/socials/jobs.png' --- ::jobs-hero diff --git a/docs/content/4.support/_dir.yml b/docs/content/4.support/_dir.yml index ce89f8a016..a2476af5e5 100644 --- a/docs/content/4.support/_dir.yml +++ b/docs/content/4.support/_dir.yml @@ -1 +1,2 @@ navigation.icon: ph:lifebuoy +titleTemplate: '%s · Nuxt Support' diff --git a/docs/content/design-kit.md b/docs/content/design-kit.md index b3db9312e1..129db67a88 100644 --- a/docs/content/design-kit.md +++ b/docs/content/design-kit.md @@ -1,6 +1,7 @@ --- title: Design Kit description: Welcome to Nuxt design definition page. Identity was redefined by handpicking conscientiously colors, typography and shapes in order to put forward how performant, useful & easy Nuxt products are. +image: '/socials/design-kit.png' --- ::resources-design-kit-hero diff --git a/docs/package.json b/docs/package.json index df22e4a365..f27178aa17 100644 --- a/docs/package.json +++ b/docs/package.json @@ -10,7 +10,7 @@ "devDependencies": { "jiti": "^1.16.0", "nuxt": "^3.0.0", - "nuxt-website-theme": "^0.1.7", + "nuxt-website-theme": "^0.1.9", "pathe": "^1.0.0", "scule": "^1.0.0", "untyped": "^1.0.0" diff --git a/docs/public/social.png b/docs/public/social.png index cfde8dd3b7..6369940602 100644 Binary files a/docs/public/social.png and b/docs/public/social.png differ diff --git a/docs/public/socials/agencies.png b/docs/public/socials/agencies.png new file mode 100644 index 0000000000..03d889c65a Binary files /dev/null and b/docs/public/socials/agencies.png differ diff --git a/docs/public/socials/api.png b/docs/public/socials/api.png new file mode 100644 index 0000000000..a7e971def3 Binary files /dev/null and b/docs/public/socials/api.png differ diff --git a/docs/public/socials/community.png b/docs/public/socials/community.png new file mode 100644 index 0000000000..ea0aa7c895 Binary files /dev/null and b/docs/public/socials/community.png differ diff --git a/docs/public/socials/design-kit.png b/docs/public/socials/design-kit.png new file mode 100644 index 0000000000..7c28d6280c Binary files /dev/null and b/docs/public/socials/design-kit.png differ diff --git a/docs/public/socials/directory-structure.png b/docs/public/socials/directory-structure.png new file mode 100644 index 0000000000..6b1a16ceb7 Binary files /dev/null and b/docs/public/socials/directory-structure.png differ diff --git a/docs/public/socials/examples.png b/docs/public/socials/examples.png new file mode 100644 index 0000000000..12b1788d47 Binary files /dev/null and b/docs/public/socials/examples.png differ diff --git a/docs/public/socials/get-started.png b/docs/public/socials/get-started.png new file mode 100644 index 0000000000..e88c371967 Binary files /dev/null and b/docs/public/socials/get-started.png differ diff --git a/docs/public/socials/going-further.png b/docs/public/socials/going-further.png new file mode 100644 index 0000000000..3936416ca0 Binary files /dev/null and b/docs/public/socials/going-further.png differ diff --git a/docs/public/socials/guide.png b/docs/public/socials/guide.png new file mode 100644 index 0000000000..1b191ffaee Binary files /dev/null and b/docs/public/socials/guide.png differ diff --git a/docs/public/socials/jobs.png b/docs/public/socials/jobs.png new file mode 100644 index 0000000000..ef6ea080e4 Binary files /dev/null and b/docs/public/socials/jobs.png differ diff --git a/docs/public/socials/key-concepts.png b/docs/public/socials/key-concepts.png new file mode 100644 index 0000000000..25f399f79a Binary files /dev/null and b/docs/public/socials/key-concepts.png differ diff --git a/docs/public/socials/modules.png b/docs/public/socials/modules.png new file mode 100644 index 0000000000..a040ec2bea Binary files /dev/null and b/docs/public/socials/modules.png differ diff --git a/docs/public/socials/showcase.png b/docs/public/socials/showcase.png new file mode 100644 index 0000000000..a2a6aba2e9 Binary files /dev/null and b/docs/public/socials/showcase.png differ diff --git a/docs/public/socials/sponsors.png b/docs/public/socials/sponsors.png new file mode 100644 index 0000000000..73a1cead1f Binary files /dev/null and b/docs/public/socials/sponsors.png differ diff --git a/docs/public/socials/support.png b/docs/public/socials/support.png new file mode 100644 index 0000000000..af9e551b6e Binary files /dev/null and b/docs/public/socials/support.png differ diff --git a/docs/yarn.lock b/docs/yarn.lock index 4394d7e589..23e19148b6 100644 --- a/docs/yarn.lock +++ b/docs/yarn.lock @@ -4120,7 +4120,7 @@ __metadata: dependencies: jiti: ^1.16.0 nuxt: ^3.0.0 - nuxt-website-theme: ^0.1.7 + nuxt-website-theme: ^0.1.9 pathe: ^1.0.0 scule: ^1.0.0 untyped: ^1.0.0 @@ -8908,9 +8908,9 @@ __metadata: languageName: node linkType: hard -"nuxt-website-theme@npm:^0.1.7": - version: 0.1.7 - resolution: "nuxt-website-theme@npm:0.1.7" +"nuxt-website-theme@npm:^0.1.9": + version: 0.1.9 + resolution: "nuxt-website-theme@npm:0.1.9" dependencies: "@docsearch/css": ^3.3.0 "@docsearch/js": ^3.3.0 @@ -8933,7 +8933,7 @@ __metadata: tailwindcss-border-gradient-radius: ^3.0.1 three: ^0.146.0 vue-lite-youtube-embed: ^1.0.4 - checksum: c43cb87566906beeb0719a856d91e8d7528abd93ff50c5ff876ebab1cf3b6f997f495f734db9d53274ebd71a6bc6f1057bcb52123236c4901215c920cb056b8a + checksum: 81aa37196786beeb68b575b70fa2984ea0bf87e58993e9cb3c87b7022ba2a6aeb86f9f62c2783498f1034c6c2623dfc63d33a33414eae355b6707631529b8016 languageName: node linkType: hard