explorer-app/app.vue

32 lines
395 B
Vue
Raw Normal View History

2023-12-19 18:43:42 +01:00
<script setup lang="ts">
useHead({
title: 'Web 3 Privacy',
})
const { fetchData } = useData()
await fetchData()
</script>
<template>
<NuxtLayout>
<NuxtPage />
</NuxtLayout>
</template>
<style>
html {
overscroll-behavior: none;
}
body {
background-color: #000;
color: white;
}
#__nuxt {
min-height: 100vh;
height: 100%;
width: 100%;
font-family: 'Archivo';
}
</style>