-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.vue
More file actions
43 lines (43 loc) · 890 Bytes
/
app.vue
File metadata and controls
43 lines (43 loc) · 890 Bytes
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
<template>
<AILoadingIndicator />
<NuxtPage/>
</template>
<script setup lang="ts">
import AILoadingIndicator from "~/components/nuxt-loading-indicator";
useHead({
bodyAttrs: {
class:
"bg-black text-white font-sans antialiased min-h-dvh [&>div]:h-full relative",
},
});
</script>
<style>
@font-face {
font-family: 'Boska';
src: url(/assets/Boska.woff2);
font-weight: 100 900;
font-display: swap;
font-style: italic;
}
@font-face {
font-family: 'Switzer';
src: url(/assets/Switzer.woff2);
font-weight: 100 900;
font-display: swap;
font-style: normal;
}
@font-face {
font-family: 'Space Grotesk';
src: url(/assets/SpaceGrotesk.woff2);
font-weight: 100 900;
font-display: swap;
font-style: normal;
}
@font-face {
font-family: 'Satoshi';
src: url(/assets/Satoshi.woff2);
font-weight: 100 900;
font-display: swap;
font-style: normal;
}
</style>