2022-05-22 15:40:23 +00:00
|
|
|
<template>
|
2022-05-22 21:04:20 +00:00
|
|
|
<NavBar :links="navLinks" />
|
|
|
|
<div class="container">
|
|
|
|
<h1 class="title">Birthdays</h1>
|
|
|
|
<p>
|
|
|
|
Discord bots are changing. <br />
|
|
|
|
This means that we can no longer provide you with the command to set
|
|
|
|
your birthday. <br />
|
|
|
|
Instead, this page now gives you your timezone for use with Discord
|
|
|
|
bots.
|
|
|
|
</p>
|
|
|
|
<h2>
|
|
|
|
Your timezone:
|
|
|
|
{{ Intl.DateTimeFormat().resolvedOptions().timeZone }}
|
|
|
|
</h2>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2022-05-23 19:37:02 +00:00
|
|
|
<script setup>
|
|
|
|
const navLinks = [
|
|
|
|
{
|
|
|
|
img: {
|
|
|
|
name: '/icons/arrow-left.svg',
|
|
|
|
alt: 'Back to Utilities',
|
|
|
|
},
|
|
|
|
to: '/utilities',
|
|
|
|
name: "Utilities",
|
2022-05-22 21:04:20 +00:00
|
|
|
},
|
2022-05-23 19:37:02 +00:00
|
|
|
{
|
|
|
|
img: {
|
|
|
|
name: '/icons/home.svg',
|
|
|
|
alt: 'Go Home',
|
|
|
|
},
|
|
|
|
to: '/',
|
|
|
|
name: "Home",
|
|
|
|
},
|
|
|
|
];
|
2022-05-22 21:04:20 +00:00
|
|
|
</script>
|