Skip to content

Commit

Permalink
feat: include seo metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
jeroenrinzema committed Oct 4, 2023
1 parent bb9ceca commit ddc8ad4
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 1 deletion.
30 changes: 29 additions & 1 deletion pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,32 @@
<Contact />
<Footer />
</div>
</template>
</template>

<script setup>
useSeoMeta({
title: 'Cloud Proud, a single access point for all your data!',
description: 'Simply connect your data sources, no copies or ETL pipelines required. Query your data in real-time.',
ogTitle: 'Cloud Proud, a single access point for all your data!',
ogDescription: 'Simply connect your data sources, no copies or ETL pipelines required. Query your data in real-time.',
ogImage: '/og-image.jpg',
ogUrl: 'https://cloudproud.nl',
twitterTitle: 'Cloud Proud, a single access point for all your data!',
twitterDescription: 'Simply connect your data sources, no copies or ETL pipelines required. Query your data in real-time.',
twitterImage: '/twitter-image.jpg',
twitterCard: 'summary'
})
useHead({
htmlAttrs: {
lang: 'en'
},
link: [
{
rel: 'icon',
type: 'image/png',
href: '/favicon.png'
}
]
})
</script>
Binary file added public/og-image.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/twitter-image.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit ddc8ad4

Please sign in to comment.