-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathapp.vue
More file actions
34 lines (32 loc) · 830 Bytes
/
app.vue
File metadata and controls
34 lines (32 loc) · 830 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
<script lang="ts" setup>
import BaseLayout from "@/layout/BaseLayout.vue";
import scrollTop from '@/components/scrollTop.vue'
useHead({
title: "Forklore",
meta: [
{ name: "description", content: "FOSS United" },
{ name: "viewport", content: "width=device-width, initial-scale=1" },
],
});
useSeoMeta({
title: "Forklore",
ogTitle: "Forklore",
description:
"Confessions, quirks and occasional rants from India’s open source keepers",
ogDescription:
"Confessions, quirks and occasional rants from India’s open source keepers",
ogImage: {
url: "https://forklore.in/og_image_main.png",
width: 1200,
height: 630,
type: "image/png",
},
twitterCard: "summary_large_image",
});
</script>
<template>
<BaseLayout>
<NuxtPage />
<scrollTop />
</BaseLayout>
</template>