17 lines
448 B
Vue
17 lines
448 B
Vue
<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>
|
|
|