2022-05-22 15:57:52 +00:00
|
|
|
<template>
|
2022-05-22 21:04:20 +00:00
|
|
|
<NavBar :links="navLinks" />
|
2022-05-22 15:57:52 +00:00
|
|
|
<div class="container">
|
|
|
|
<h1 class="title">Utilities for the Discord Server</h1>
|
2022-05-23 19:37:02 +00:00
|
|
|
<div class="grid-2">
|
|
|
|
<LinkCard title="Birthdays" to="/utilities/birthdays" />
|
|
|
|
<LinkCard title="Time" to="/utilities/time" />
|
|
|
|
</div>
|
2022-05-22 15:57:52 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
2022-05-22 21:04:20 +00:00
|
|
|
|
2022-05-23 19:37:02 +00:00
|
|
|
<script setup>
|
|
|
|
const navLinks = [
|
|
|
|
{
|
|
|
|
img: {
|
|
|
|
name: '/icons/home.svg',
|
|
|
|
alt: 'Go Home',
|
|
|
|
},
|
|
|
|
to: '/',
|
|
|
|
name: "Home",
|
2022-05-22 21:04:20 +00:00
|
|
|
},
|
2022-05-23 19:37:02 +00:00
|
|
|
];
|
2022-05-22 21:04:20 +00:00
|
|
|
</script>
|