Skip to content

Commit

Permalink
chore: change header order & naming
Browse files Browse the repository at this point in the history
  • Loading branch information
atinux committed Aug 30, 2024
1 parent 727a136 commit 59105c9
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 25 deletions.
44 changes: 22 additions & 22 deletions composables/useNavigation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,27 @@ const _useNavigation = () => {
target: '_blank'
}]
}, {
label: 'Enterprise',
label: 'Products',
icon: 'i-ph-sparkle-duotone',
search: false,
children: [{
label: 'Nuxt UI Pro',
to: 'https://ui.nuxt.com/pro?utm_source=nuxt-website&utm_medium=header',
description: 'Premium Vue components for Nuxt.',
icon: 'i-ph-layout-duotone'
}, {
label: 'Nuxt Studio',
to: 'https://nuxt.studio/?utm_source=nuxt-website&utm_medium=header',
description: 'The Git-based CMS for Nuxt.',
icon: 'i-ph-pen-duotone'
}, {
label: 'NuxtHub',
to: 'https://hub.nuxt.com/?utm_source=nuxt-website&utm_medium=header',
description: 'Build, deploy & manage Nuxt apps that scale.',
icon: 'i-ph-rocket-launch-duotone'
}]
}, {
label: 'Services',
icon: 'i-ph-buildings-duotone',
to: '/enterprise',
search: false,
Expand All @@ -106,26 +126,6 @@ const _useNavigation = () => {
description: 'Help us sustain Nuxt development.',
icon: 'i-ph-hand-heart-duotone'
}]
}, {
label: 'Labs',
icon: 'i-ph-atom-duotone',
search: false,
children: [{
label: 'Nuxt UI Pro',
to: 'https://ui.nuxt.com/pro?utm_source=nuxt-website&utm_medium=header',
description: 'Premium Vue components for Nuxt.',
icon: 'i-ph-layout-duotone'
}, {
label: 'Nuxt Studio',
to: 'https://nuxt.studio/?utm_source=nuxt-website&utm_medium=header',
description: 'The Git-based CMS for Nuxt.',
icon: 'i-ph-pen-duotone'
}, {
label: 'NuxtHub',
to: 'https://hub.nuxt.com/?utm_source=nuxt-website&utm_medium=header',
description: 'Build, deploy & manage Nuxt apps that scale.',
icon: 'i-ph-rocket-launch-duotone'
}]
}, {
label: 'Blog',
icon: 'i-ph-newspaper-duotone',
Expand All @@ -147,7 +147,7 @@ const _useNavigation = () => {
to: '/design-kit'
}]
}, {
label: 'NuxtLabs',
label: 'Products',
children: [{
label: 'Nuxt UI Pro',
to: 'https://ui.nuxt.com/pro?utm_source=nuxt-website&utm_medium=footer',
Expand Down
6 changes: 3 additions & 3 deletions pages/enterprise/agencies/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ const { data: page } = await useAsyncData(route.path, () => queryContent(route.p
const title = page.value.head?.title || page.value.title
const description = page.value.head?.description || page.value.description
useSeoMeta({
titleTemplate: '%s · Enterprise',
titleTemplate: '%s · Services',
title,
description,
ogDescription: description,
ogTitle: `${title} · Enterprise`
ogTitle: `${title} · Services`
})
defineOgImageComponent('Docs', {
headline: 'Enterprise'
headline: 'Services'
})
await fetchList()
Expand Down

0 comments on commit 59105c9

Please sign in to comment.