2025-02-21

This commit is contained in:
gcch 2025-02-21 23:23:22 +01:00
commit 5d5918f0d7
69 changed files with 1481 additions and 305 deletions

View file

@ -0,0 +1,13 @@
<script setup lang="ts">
import { onMounted } from "vue";
// DEBUG
onMounted(() => {
console.debug("NotFoundPage.vue -- Mounted");
});
</script>
<template>
<section class="stack" id="404">
<h2>404</h2>
</section>
</template>