mirror of
https://github.com/web3privacy/explorer-app.git
synced 2024-10-15 16:46:26 +02:00
34 lines
492 B
Vue
34 lines
492 B
Vue
<script setup lang="ts">
|
|
useHead({
|
|
titleTemplate: (titleChunk) => {
|
|
return titleChunk
|
|
? `${titleChunk} - Web3-Privacy`
|
|
: 'Web3-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>
|