dev-audioprocessing/layouts/default.vue

18 lines
476 B
Vue
Raw Normal View History

2022-12-11 23:55:43 +00:00
<template>
<div>
2022-12-12 03:10:34 +00:00
<header class="shadow-sm bg-white">
<nav class="container mx-auto p-4 justify-between flex">
<NuxtLink to="/" class="text-bold">Crave Teck</NuxtLink>
<ul class="flex gap-4">
<li><NuxtLink to="/">Home</NuxtLink></li>
<li><NuxtLink to="/about">About</NuxtLink></li>
<li><NuxtLink to="/products/1122">Product 1122</NuxtLink></li>
</ul>
</nav>
</header>
<div class="container p-4 mx-auto">
2022-12-11 23:55:43 +00:00
<slot/>
2022-12-12 03:10:34 +00:00
</div>
2022-12-11 23:55:43 +00:00
</div>
</template>