-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.vue
48 lines (45 loc) · 867 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>
<div>
<NuxtLayout>
<NuxtPage/>
</NuxtLayout>
</div>
</template>
<script setup lang="ts">
useHead({
link: [
{
rel: 'preconnect',
href: 'https://fonts.gstatic.com'
},
{
rel: 'stylesheet',
href: 'https://fonts.googleapis.com/css2?family=Sen:wght@400;700;800&family=Roboto+Mono:ital@0;1&display=swap'
},
{
rel: 'stylesheet',
href: 'https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200&display=swap'
},
{
rel: 'icon',
type: 'image/x-icon',
href: 'icons/favicon.png'
},
],
script: [
{
src: "/js/lottie.min.js",
},
{
src: "/js/rellax.min.js",
},
],
})
</script>
<style lang="scss">
body {
background: #fbfdfd;
margin: 0;
padding: 0;
}
</style>