friends-best/pages/utilities/index.vue
Louis Hollingworth 14659122c3
All pages now in Nuxt, work next on nav.
DB connected, check issues with writing.

Signed-off-by: Louis Hollingworth <louis@hollingworth.ch>
2023-05-16 20:17:33 +01:00

26 lines
667 B
Vue

<template>
<div>
<NavHeader class="h-screen-1/20" />
<div class="grid h-screen-19/20 place-items-center">
<div class="grid place-items-center">
<h1 class="text-6xl font-bold underline">Vänner Bästa</h1>
<div class="grid grid-cols-2 mt-10">
<LLink v-for="link in links" :to="link.href" :title="link.title" />
</div>
</div>
</div>
</div>
</template>
<script setup lang="ts">
const links: Array<{href: string, title: string}> = [
{
href: "/utilities/birthdays",
title: "Birthdays"
},
{
href: "/utilities/time",
title: "Time"
},
]
</script>