-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.vue
45 lines (42 loc) · 1.13 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<template>
<NuxtPwaManifest />
<NuxtLayout>
<NuxtPage />
</NuxtLayout>
<UNotifications />
</template>
<script lang="ts" setup>
useHead({
title: 'BookMarker',
meta: [
{ name: 'description', content: 'An awesome bookmark manager.' },
{ name: 'google-site-verification', content: 'XAIUyWxtFzt6NL3RTFDFpBWSyZ8unmcB94rtsvzC8fY' }
],
htmlAttrs: {
lang: 'en'
},
link: [
{
rel: 'icon',
type: 'image/x-icon',
href: '/favicon.ico'
}
]
})
// <meta name="google-site-verification" content="XAIUyWxtFzt6NL3RTFDFpBWSyZ8unmcB94rtsvzC8fY" />
useSeoMeta({
title: 'BookMarker',
ogTitle: 'BookMarker',
twitterTitle: 'BookMarker',
twitterDescription: 'An awesome bookmark manager.',
ogUrl: 'https://myurlbookmarker.vercel.app',
description: 'An awesome bookmark manager.',
ogDescription: 'An awesome bookmark manager.',
ogImage: 'https://myurlbookmarker.vercel.app/bookmarker.png',
twitterCard: 'summary_large_image',
twitterImage: 'https://myurlbookmarker.vercel.app/bookmarker.png',
author: 'Ajmal Shahabudeen',
publisher: 'Ajmal Shahabudeen',
googlebot: 'notranslate'
})
</script>