WIP: Frontend implementation #1
1 changed files with 17 additions and 0 deletions
default layout
commit
d4921043c2
17
frontend/app/layouts/default.vue
Normal file
17
frontend/app/layouts/default.vue
Normal 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>
|
||||||
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue