Louis Hollingworth
14659122c3
DB connected, check issues with writing. Signed-off-by: Louis Hollingworth <louis@hollingworth.ch>
26 lines
667 B
Vue
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> |