friends-best/pages/utilities/index.vue

24 lines
435 B
Vue
Raw Permalink Normal View History

<template>
2022-05-22 21:04:20 +00:00
<NavBar :links="navLinks" />
<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>
</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>