feat(seo): add meta tags and page titles

Configure default head meta and title template in nuxt.config.ts
Add dynamic SEO meta tags and robots directives to all pages
This commit is contained in:
2026-05-08 17:07:43 +08:00
parent 25720b21e1
commit 4f25f2b2f8
9 changed files with 79 additions and 0 deletions

View File

@@ -114,6 +114,12 @@ definePageMeta({
middleware: 'auth'
})
useSeoMeta({
title: 'Security Settings',
description: 'Manage password and passkey settings for the dinner ticket system.',
robots: 'noindex,nofollow'
})
const toast = useToast()
const router = useRouter()
const auth = useAuth()