-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.vue
47 lines (41 loc) · 1.05 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
46
47
<script setup lang="ts">
useHead({
title: 'Saihex Studios',
meta: [
{ name: 'description', content: 'Saihex Studios\'s website' },
{ name: 'theme-color', "data-react-helmet": 'true', content: '#FF95FF' },
{ name: 'cache-control', content: `public, max-age=7200` }
],
htmlAttrs: { lang: 'en' }
})
// This will set some embed parameters
useSeoMeta({
ogTitle: 'Saihex Studios\' official website',
twitterTitle: "Saihex Studios\' official website",
ogDescription: 'Saihex Studios\' official website',
ogImage: 'https://img.saihex.com/webp?src=embed_pic.png',
twitterImage: 'https://img.saihex.com/webp?src=embed_pic.png',
ogUrl: '/',
twitterDescription: "Saihex Studio\' official website",
twitterCard: 'summary_large_image'
})
</script>
<template>
<div>
<NuxtLayout>
<NuxtPage />
</NuxtLayout>
</div>
</template>
<style>
*::-webkit-scrollbar {
width: 8px;
}
*::-webkit-scrollbar-track {
background: rgb(60, 60, 60);
}
*::-webkit-scrollbar-thumb {
@apply bg-zinc-500 border-x-4 border-solid border-zinc-500;
border-radius: 20px;
}
</style>