-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.vue
47 lines (43 loc) · 983 Bytes
/
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({
link: [
{
rel: "icon",
type: "image/png",
href: "/favicon.png",
},
],
script: [
{
src: "https://www.googletagmanager.com/gtag/js?id=G-6L1LX1G558",
async: true,
},
{
innerHTML: `
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-6L1LX1G558');
`,
},
],
});
useSeoMeta({
ogTitle: "JET Pilot - Manage Kubernetes in style",
ogDescription:
"JET Pilot is an open-source Kubernetes desktop client that focuses on less clutter, speed and good looks.",
ogImage: "/images/og-image.png",
ogUrl: "https://www.jet-pilot.app",
});
</script>
<template>
<div class="container mx-auto">
<Header />
<NuxtPage />
</div>
</template>
<style lang="postcss">
body {
@apply font-sans antialiased bg-white text-black dark:bg-black dark:text-white;
}
</style>