-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.vue
44 lines (40 loc) · 1.13 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
<template>
<div class="flex flex-col min-h-screen">
<Navbar class="hidden lg:flex" />
<div class="lg:mt-20"></div>
<NuxtPage />
<div class="grow"></div>
<Footer></Footer>
<BottomNav class="lg:hidden" />
</div>
</template>
<script setup>
import logoColor from "/img/logoColor.png"
const runtimeConfig = useRuntimeConfig()
useHead({
bodyAttrs: {
class: "bg-base-100 text-primary-content"
},
link: [
{
rel: "preload",
href: "https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible:ital,wght@0,400;0,700;1,400;1,700&display=swap",
as: "font",
},
{
rel: "preload",
href: "https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap",
as: "font",
}
]
})
useSeoMeta({
title: "AbandonTech",
ogTitle: "AbandonTech",
description: "Empowering Businesses Through Technology",
ogDescription: "Empowering Businesses Through Technology",
ogImage: runtimeConfig.public.baseUrl + logoColor,
twitterCard: "summary_large_image",
themeColor: "#1A67D7"
})
</script>