Added timezones

This commit is contained in:
2026-04-04 22:19:58 +10:00
parent 7f62c31456
commit 509efbe821
11 changed files with 516 additions and 424 deletions
@@ -1,9 +1,14 @@
<script setup lang="ts">
defineProps<{
title?: string;
blurb?: string;
}>();
</script>
<template>
<div class="glass-box glass glass-border">
<h2 v-if="title">{{ title }}</h2>
<p v-if="blurb">{{ blurb }}</p>
<slot />
</div>
</template>
@@ -12,8 +17,19 @@
.glass-box {
width: 50%;
min-height: 50dvh;
gap:1em;
gap: 1em;
padding: 2em;
}
h2 {
font-size: 2rem;
text-align: center;
}
p {
text-align: center;
width: 100%;
opacity: 0.7;
margin-bottom: 1rem;
}
</style>