Files
drop/layouts/default.vue
DecDuck 1f575b2bc0 small fixes & SSR disabled
SSR was causing weird issues where error pages would flash because the
user wasn't logged in. I'm disabling it for now, but I will eventually
look into ways to fix the issue and re-enable it.
2024-10-17 21:04:32 +11:00

19 lines
356 B
Vue

<template>
<div class="flex flex-col w-full min-h-screen bg-zinc-900">
<UserHeader class="z-50" />
<div class="grow flex">
<NuxtPage />
</div>
<UserFooter class="z-50" />
</div>
</template>
<script setup lang="ts">
useHead({
titleTemplate(title) {
if (title) return `${title} | Drop`;
return `Drop`;
},
});
</script>