Louis Hollingworth
14659122c3
DB connected, check issues with writing. Signed-off-by: Louis Hollingworth <louis@hollingworth.ch>
20 lines
764 B
Vue
20 lines
764 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 p-4">Birthdays</h1>
|
|
<p class="p-4">
|
|
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 class="p-4 text-4xl" >Your timezone: <span class="underline" >{{ timezone }}</span></h2>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
const timezone = Intl.DateTimeFormat().resolvedOptions().timeZone;
|
|
</script> |