feat(seo): implement dynamic page titles

This commit enhances SEO and user experience by setting dynamic page titles for detail pages and updating the global title configuration.

- Event, Hall of Fame, and News detail pages now use the specific item's title as the page title.
- The global `titleTemplate` and default `title` in `nuxt.config.ts` have been updated for better branding.
- These changes ensure each page has a unique, descriptive title, which is beneficial for search engine ranking and browser tab clarity.
This commit is contained in:
xiaomai
2025-10-04 11:03:21 +08:00
parent 950dc60891
commit b05faddfc0
6 changed files with 20 additions and 16 deletions

View File

@@ -24,7 +24,8 @@
class="w-full h-48 object-cover transition-transform duration-500 group-hover:scale-110" />
<div
class="absolute inset-0 bg-black/0 group-hover:bg-black/30 transition-all duration-300 flex items-center justify-center">
<Icon name="mdi:like" class="w-12 h-12 text-white opacity-0 group-hover:opacity-100 transition-opacity duration-300"/>
<Icon name="mdi:like"
class="w-12 h-12 text-white opacity-0 group-hover:opacity-100 transition-opacity duration-300" />
</div>
</div>
</div>
@@ -40,6 +41,10 @@ const { data: person } = await useAsyncData('hall-of-fames-detail', () =>
.path(`/hall-of-fames/${route.params.slug}`)
.first()
)
useHead({
title: person.value?.name
})
</script>
<style></style>