-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathapp.vue
27 lines (27 loc) · 1.04 KB
/
app.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<template>
<div class="flex flex-col min-h-screen bg-base-100">
<AppHeader />
<div class="flex-grow">
<main>
<NuxtPage />
</main>
</div>
<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>