-
-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathapp.vue
More file actions
35 lines (31 loc) · 709 Bytes
/
app.vue
File metadata and controls
35 lines (31 loc) · 709 Bytes
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
28
29
30
31
32
33
34
35
<script setup lang="ts">
useHead({
link: [
{
rel: 'preconnect',
href: 'https://fonts.googleapis.com',
},
{
rel: 'stylesheet',
href: 'https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap',
crossorigin: '',
},
],
})
useSeoMeta({
twitterCard: 'summary_large_image',
})
</script>
<template>
<NuxtLayout>
<SeoKit />
<!-- a. Generates browser screenshots for every page -->
<OgImageScreenshot />
<!-- b. Generate saotir images for every page (uses the default template) -->
<OgImageStatic />
<NuxtLoadingIndicator />
<NuxtPage />
<RouteModalProduct />
</NuxtLayout>
<UNotifications />
</template>