Files
timmal/app/layouts/unauthenticated.vue
Lucien Cartier-Tilet e284c07de0
Some checks failed
ci / ci (22, ubuntu-latest) (push) Failing after 7m11s
feat(ui): basic layout
2025-12-09 05:40:59 +01:00

24 lines
327 B
Vue

<template>
<UApp>
<UHeader>
<template #left>
<AppLogo />
</template>
<template #right>
<UColorModeButton />
</template>
</UHeader>
<UMain>
<slot />
</UMain>
<UFooter>
<template #left />
<template #right />
</UFooter>
</UApp>
</template>