-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.vue
55 lines (47 loc) · 1.41 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
51
52
53
54
55
<script setup lang="ts">
const config = useRuntimeConfig();
useHead({
htmlAttrs: { lang: "en-US" },
title: "Decimal Time Zone | Modern Time Standard"
});
const description = ref("Time standard that combines the convenience of decimal time with the advantages of time zone systems.");
useServerSeoMeta({
description: description,
keywords: "Decimal Time Zone, DTZ, ⸤DT⸣, decimal time, time zone, time standard",
ogTitle: "Modern Time Standard",
ogDescription: description,
ogImage: `${config.public.baseURL}/og-image.png`,
twitterCard: "summary_large_image",
ogUrl: config.public.baseURL,
ogType: "website",
ogSiteName: "Decimal Time Zone",
ogLocale: "en_US"
});
</script>
<template>
<Head>
<Link rel="icon" href="/favicon.ico" sizes="48x48" />
<Link rel="icon" href="/favicon.svg" type="image/svg+xml" sizes="any" />
<Link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<Link rel="manifest" href="/app.webmanifest" />
</Head>
<div id="app">
<NuxtRouteAnnouncer />
<Logo />
<Map />
</div>
</template>
<style scoped lang="scss">
#app {
position: relative;
overflow: hidden;
min-height: 100dvh;
display: flex;
align-items: center;
justify-content: center;
.map {
position: absolute;
z-index: -1;
}
}
</style>