-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.vue
More file actions
37 lines (33 loc) · 1.07 KB
/
app.vue
File metadata and controls
37 lines (33 loc) · 1.07 KB
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
<script setup lang="ts">
useSeoMeta({
// Basic SEO
title: "SaaS Name",
description: "Your compelling description here - make it unique and descriptive",
robots: "index, follow",
author: "Webry",
// // Open Graph / Social Media
// ogTitle: "SaaS Name",
// ogType: "website",
// ogUrl: "https://saas.webry.com",
// ogDescription: "Your compelling description here - make it unique and descriptive",
// ogImage: "https://saas.webry.com/logo.svg", // Already/Should-be handled by og image module
// ogLocale: "en_US",
// ogSiteName: "SaaS Name",
// // Twitter Cards
// twitterCard: "summary_large_image",
// twitterTitle: "SaaS Name",
// twitterDescription: "Your compelling description here - make it unique and descriptive",
// twitterImage: "https://saas.webry.com/logo.svg", // Already/Should-be handled by og image module
})
useHead({
meta: [
{ name: "google-site-verification", content: "sPGzYgBohvrx3SVNFovdsQHNIQunldsnfJpLRux0keo" }
]
})
</script>
<template>
<NuxtLayout>
<NuxtPage />
<UiToastToaster />
</NuxtLayout>
</template>