-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.vue
48 lines (43 loc) · 964 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
48
<template>
<v-app>
<NuxtLoadingIndicator color="#000000" />
<NavBar />
<v-main>
<v-container class="main-content my-6">
<NuxtPage />
</v-container>
</v-main>
<BackToTop />
<FooterBar />
</v-app>
</template>
<style>
html {
overflow-y: auto !important;
}
.main-content {
max-width: 900px;
}
a:not([class*="v"])::before {
font-family: "Material Design Icons";
content: "\F0339 ";
}
a:not([class*="v"]) {
text-decoration: none;
}
a:not([class*="v"]):hover {
text-decoration: underline;
}
</style>
<script setup lang="ts">
const descr =
"eweOS is an musl-based, lightweight, general-purpose Linux distribution, which adopts musl libc and busybox to the latest versions of software with a rolling-release model.";
useSeoMeta({
twitterCard: "summary_large_image",
description: descr,
ogDescription: descr,
ogType: "website",
ogSiteName: "eweOS",
});
defineOgImageComponent("Global");
</script>