WIP: Frontend implementation #1

Draft
fager wants to merge 19 commits from ch-frontend into main
Showing only changes of commit d4921043c2 - Show all commits

default layout

Frank Agerholm 2026-01-25 11:14:28 +01:00
No known key found for this signature in database

View file

@ -0,0 +1,17 @@
<template>
<div class="min-h-screen bg-gray-100 text-gray-900">
<header class="p-4 bg-white shadow">
<nav class="flex gap-4">
<NuxtLink to="/">Dashboard</NuxtLink>
<NuxtLink to="/owners">Owners</NuxtLink>
<NuxtLink to="/servers">Servers</NuxtLink>
<NuxtLink to="/workentries">Work Entries</NuxtLink>
</nav>
</header>
<main class="p-6">
<NuxtPage />
</main>
</div>
</template>