We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8b5bfc6 + cab6939 commit f756c65Copy full SHA for f756c65
ogi/pages/index.vue
@@ -3,20 +3,18 @@
3
</template>
4
5
<script lang="ts" setup>
6
-const route = useRoute()
7
-
8
-const { image, text } = route.query
9
10
-defineOgImage({
11
- component: 'base-image',
12
- props: {
13
- image: KODA_BANNER_URL,
14
- },
15
-})
16
17
useSeoMeta({
18
title: seoTitle('Koda'),
+ viewport: 'width=device-width, initial-scale=1',
19
description: KODA_DESCRIPTION,
+ ogTitle: seoTitle('Koda'),
+ ogDescription: KODA_DESCRIPTION,
+ ogType: 'website',
+ ogImage: KODA_BANNER_URL,
20
twitterCard: 'summary_large_image',
+ twitterTitle: seoTitle('Koda'),
+ twitterDescription: KODA_DESCRIPTION,
+ twitterImage: KODA_BANNER_URL,
+ twitterSite: '@KodaDot'
21
})
22
</script>
0 commit comments