-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.vue
45 lines (44 loc) · 1.15 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
<template>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/lucaburgio/iconoir@main/css/iconoir.css">
<Cursor />
<div class="flex flex-col min-h-screen h-full justify-between bg-bkg-blue content-center relative">
<Navbar
class="max-w-screen-lg mx-auto bottom-0 md:bottom-unset md:mt-1 fixed z-20 fixed left-1/2 -translate-x-1/2" />
<NuxtPage class="max-w-screen-lg mx-auto w-full pt-5 pb-24 px-6 sm:px-16 md:py-24 md:px-6" role="main" />
<Footer class="pb-24 md:pb-6" />
</div>
</template>
<script setup lang="ts">
import Navbar from "~/layouts/navbar.vue";
import Footer from "~/layouts/footer.vue";
useHead({
htmlAttrs: {
lang: "en"
},
script: [
{
type: 'text/javascript',
src: 'js/vanilla-tilt.js',
}
],
link: [
{
rel: 'preconnect',
href: 'https://fonts.googleapis.com'
},
{
rel: 'preconnect',
href: 'https://fonts.gstatic.com',
},
{
rel: 'stylesheet',
href: 'https://fonts.googleapis.com/css2?family=DM+Mono:wght@300;400;500&display=swap'
},
{
rel: 'icon',
type: 'image/x-icon',
href: 'favicon.ico'
}
],
})
</script>