mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-10 04:22:09 +10:00
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.
19 lines
356 B
Vue
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>
|