2022-11-13 05:34:43 +00:00
|
|
|
<script setup>
|
|
|
|
useHead({
|
2022-11-13 16:05:32 +00:00
|
|
|
title: 'Nuxtodon',
|
2022-11-13 05:34:43 +00:00
|
|
|
link: [
|
|
|
|
{
|
|
|
|
rel: 'icon', type: 'image/png', href: '/nuxt.png',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
})
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<NuxtLayout>
|
2022-11-14 14:54:30 +00:00
|
|
|
<NuxtLoadingIndicator />
|
2022-11-13 05:34:43 +00:00
|
|
|
<NuxtPage />
|
|
|
|
</NuxtLayout>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
html, body , #__nuxt{
|
|
|
|
height: 100vh;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
html.dark {
|
|
|
|
background: #222;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
</style>
|