feat: quick bottom home screen setup

This commit is contained in:
2025-11-11 14:44:51 +01:00
parent eb7eb08428
commit 83b1c4c563
4 changed files with 29 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
<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/home-screen_bottom_background.png"
hidden
/>
</template>