-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathapp.vue
50 lines (45 loc) · 1.54 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
48
49
50
<script setup>
import { isDev } from '@/lib/utils'
import '@unocss/reset/tailwind.css'
import 'assets/styles/main.postcss'
// import 'uno.css'
setupVeeValidate()
</script>
<template>
<Body bg-light-500 text-true-gray-700 dark="bg-dark-800 text-gray-100" />
<Head>
<Link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<Link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<Link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<Link rel="canonical" href="https://ovaas.netlify.app" />
<Meta name="mobile-web-app-capable" content="yes" />
<Meta name="apple-mobile-web-app-capable" content="yes" />
<Meta name="msapplication-starturl" content="/" />
<Meta name="msapplication-TileColor" content="#00aba9" />
<Meta property="og:url" content="https://ovaas.netlify.app" />
<Meta property="og:type" content="website" />
<Meta property="og:site_name" content="OVAAS" />
<Meta property="og:image" content="https://ovaas.netlify.app/og.png" />
<Meta property="og:locale" content="en_US" />
<Meta property="og:locale:alternate" content="ja_JP" />
<Meta name="twitter:card" content="Summary Card" />
</Head>
<TheHeader />
<main mx-auto max-w-screen-xl px2 pt8 lg="px6 pt12">
<NuxtPage />
</main>
<TheFooter />
<FlashMessage />
<MessageButtons v-if="isDev" />
</template>
<style>
:root {
--header-height: 4.5rem;
}
/* html {
@apply bg-light-500 text-true-gray-700;
}
html.dark {
@apply bg-dark-800 text-gray-100;
} */
</style>