-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.vue
39 lines (37 loc) · 1.12 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
<script setup lang="ts">
useSeoMeta({
title: "Octo.Party",
ogTitle: "Octo.Party | Multi-Stream",
twitterTitle: "Octo.Party | Multi-Stream",
twitterDescription:
"The straightforward solution for watching multiple Twitch streams with friends. With Octo Party, you can easily create lists of Twitch streams to watch simultaneously, all in one place.",
description:
"The straightforward solution for watching multiple Twitch streams with friends. With Octo Party, you can easily create lists of Twitch streams to watch simultaneously, all in one place.",
ogDescription:
"The straightforward solution for watching multiple Twitch streams with friends. With Octo Party, you can easily create lists of Twitch streams to watch simultaneously, all in one place.",
ogImage: "/favicon.svg",
twitterImage: "/favicon.svg",
ogUrl: "https://octo.party",
twitterCard: "summary",
});
useHead({
htmlAttrs: {
lang: "en",
},
link: [
{
rel: "icon",
type: "image/svg",
href: "/favicon.svg",
},
],
bodyAttrs: {
class: `dark`,
},
});
</script>
<template>
<div>
<NuxtPage />
</div>
</template>