-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.vue
38 lines (34 loc) · 873 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
<script setup lang="ts">
const colorMode = useColorMode();
colorMode.value = "dark"; // Set the color mode to dark by default
const color: ComputedRef<string> = computed(() =>
colorMode.value === "dark" ? "#111827" : "white"
);
// ... rest of the code
useHead(() => ({
meta: [
{ charset: "utf-8" },
{ name: "viewport", content: "width=device-width, initial-scale=1" },
{ key: "theme-color", name: "theme-color", content: color.value },
// Ensure to use .value here
],
link: [{ rel: "icon", href: "/gold-icon.png" }],
htmlAttrs: {
lang: "en",
},
}));
useSeoMeta({
titleTemplate: "PeakofEloquence.org",
ogImage: "/landing.jpg",
twitterImage: "/landing.jpg",
twitterCard: "summary_large_image",
});
</script>
<template>
<div>
<NuxtLoadingIndicator />
<NuxtLayout>
<NuxtPage />
</NuxtLayout>
</div>
</template>