Skip to content

Commit 71fef54

Browse files
committed
fix(seo): set home title via i18n
1 parent 7ca91df commit 71fef54

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pages/index.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,11 @@ definePageMeta({
88
layout: 'default',
99
});
1010
11+
const { t } = useI18n()
1112
const { concept, connect, slides } = useHomeContent()
1213
const { sponsors } = useSponsoring()
1314
const { data: collective } = useOpenCollective()
14-
useHomeSeo()
15+
useHomeSeo({ title: t('index.title') })
1516
1617
const LazyServerConcept = defineAsyncComponent(() => import('~/components/features/home/server-concept/ServerConcept.vue'))
1718
const LazyServerAddresses = defineAsyncComponent(() => import('~/components/features/home/server-addresses/ServerAddresses.vue'))

0 commit comments

Comments
 (0)