feat: move top screen components to own folder, and implement calendar

This commit is contained in:
2025-11-10 14:24:20 +01:00
parent c465679b47
commit 009b19e404
6 changed files with 105 additions and 41 deletions

View File

@@ -0,0 +1,13 @@
<script setup lang="ts">
const backgroundImage = useTemplateRef("backgroundImage");
useRender((ctx) => {
if (!backgroundImage.value) return;
ctx.drawImage(backgroundImage.value, 0, 0);
});
</script>
<template>
<img ref="backgroundImage" src="/assets/background.png" hidden />
</template>