This commit is contained in:
Michael Dausmann
2024-02-17 12:15:06 +11:00
parent 8a801b1696
commit a21cca64d5

16
app.vue
View File

@@ -9,3 +9,19 @@
<AppFooter />
</div>
</template>
<script setup lang="ts">
useSeoMeta({
title: 'SupaNuxt SaaS',
ogTitle: 'SupaNuxt SaaS',
ogUrl: 'https://nuxt3-saas-boilerplate.netlify.app/',
ogType: 'website',
// fbAppId: '1111222233334444', // you will need this if you authenticate with fb
description:
'With SupaNuxt SaaS, you can easily get started building your next web application. Our pre-configured tech stack and industry leading features make it easy to get up and running in no time.',
ogDescription:
'With SupaNuxt SaaS, you can easily get started building your next web application. Our pre-configured tech stack and industry leading features make it easy to get up and running in no time.',
ogImage:
'https://nuxt3-saas-boilerplate.netlify.app/_nuxt/supanuxt_logo_200.896c0d73.png',
twitterCard: 'summary_large_image'
});
</script>