Skip to content

Commit

Permalink
Merge pull request #339 from roiLeo/fix/landing/seo
Browse files Browse the repository at this point in the history
🔧 page landing seo
  • Loading branch information
preschian authored Oct 7, 2024
2 parents 8b5bfc6 + cab6939 commit f756c65
Showing 1 changed file with 9 additions and 11 deletions.
20 changes: 9 additions & 11 deletions ogi/pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,18 @@
</template>

<script lang="ts" setup>
const route = useRoute()
const { image, text } = route.query
defineOgImage({
component: 'base-image',
props: {
image: KODA_BANNER_URL,
},
})
useSeoMeta({
title: seoTitle('Koda'),
viewport: 'width=device-width, initial-scale=1',
description: KODA_DESCRIPTION,
ogTitle: seoTitle('Koda'),
ogDescription: KODA_DESCRIPTION,
ogType: 'website',
ogImage: KODA_BANNER_URL,
twitterCard: 'summary_large_image',
twitterTitle: seoTitle('Koda'),
twitterDescription: KODA_DESCRIPTION,
twitterImage: KODA_BANNER_URL,
twitterSite: '@KodaDot'
})
</script>

0 comments on commit f756c65

Please sign in to comment.