Files
timmal/app/layouts/unauthenticated.vue

24 lines
327 B
Vue
Raw Permalink Normal View History

2025-12-07 21:27:23 +01:00
<template>
<UApp>
<UHeader>
<template #left>
<AppLogo />
</template>
<template #right>
<UColorModeButton />
</template>
</UHeader>
<UMain>
<slot />
</UMain>
<UFooter>
<template #left />
<template #right />
</UFooter>
</UApp>
</template>