work on porting over contact form from old site, also added initial db support

to use later
This commit is contained in:
badblocks 2026-01-06 08:07:19 -08:00
parent 8d989ef36f
commit f641dac69b
No known key found for this signature in database
12 changed files with 232 additions and 32 deletions

View file

@ -13,6 +13,12 @@
href="https://fonts.googleapis.com/css2?family=VT323&display=swap"
rel="stylesheet"
/>
<script>
const yearSpan = document.querySelector("#copyright-year");
if (yearSpan) {
yearSpan.innerHTML = new Date().getFullYear().toString();
}
</script>
<style>
:root {
--min-body-width: 30ch;
@ -96,9 +102,7 @@
</main>
<footer>
<p>
&copy; <script is:inline>
document.write(new Date().getFullYear());
</script>
&copy; <span id="copyright-year">2026</span>
badblocks
</p>
<p>Made from scratch with BAHA: Bun, Astro, Htmx, and Alpine!</p>