Skip to content

Commit f756c65

Browse files
authored
Merge pull request #339 from roiLeo/fix/landing/seo
🔧 page landing seo
2 parents 8b5bfc6 + cab6939 commit f756c65

File tree

1 file changed

+9
-11
lines changed

1 file changed

+9
-11
lines changed

Diff for: ogi/pages/index.vue

+9-11
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,18 @@
33
</template>
44

55
<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-
176
useSeoMeta({
187
title: seoTitle('Koda'),
8+
viewport: 'width=device-width, initial-scale=1',
199
description: KODA_DESCRIPTION,
10+
ogTitle: seoTitle('Koda'),
11+
ogDescription: KODA_DESCRIPTION,
12+
ogType: 'website',
13+
ogImage: KODA_BANNER_URL,
2014
twitterCard: 'summary_large_image',
15+
twitterTitle: seoTitle('Koda'),
16+
twitterDescription: KODA_DESCRIPTION,
17+
twitterImage: KODA_BANNER_URL,
18+
twitterSite: '@KodaDot'
2119
})
2220
</script>

0 commit comments

Comments
 (0)