Now has all of the functions as the Astro site.

Signed-off-by: Louis Hollingworth <louis@hollingworth.ch>
This commit is contained in:
Louis Hollingworth 2023-05-09 19:55:32 +01:00
parent 2e98cb39f4
commit f9e7e5480c
Signed by: lucxjo
GPG key ID: A11415CB3DC7809B
12 changed files with 2618 additions and 3316 deletions

25
pages/utilities/index.vue Normal file
View file

@ -0,0 +1,25 @@
<template>
<div>
<div class="grid h-screen 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>