ca groundwork

This commit is contained in:
DecDuck
2024-10-07 22:35:54 +11:00
parent 1bd19ad917
commit bfafd2a044
44 changed files with 628 additions and 130 deletions

2
layouts/admin.vue Normal file
View File

@@ -0,0 +1,2 @@
<template>
</template>

View File

@@ -1,18 +1,18 @@
<template>
<content class="flex flex-col w-full min-h-screen">
<UserHeader />
<div class="grow flex">
<NuxtPage />
</div>
<UserFooter />
</content>
<content class="flex flex-col w-full min-h-screen">
<UserHeader />
<div class="grow flex">
<NuxtPage />
</div>
<UserFooter />
</content>
</template>
<script setup lang="ts">
useHead({
titleTemplate(title) {
if (title) return `${title} | Drop`;
return `Drop`;
},
})
</script>
titleTemplate(title) {
if (title) return `${title} | Drop`;
return `Drop`;
},
});
</script>