feat(contact): bottom screen navigation

This commit is contained in:
2025-11-14 23:22:32 +01:00
parent d54d52bff0
commit e65b97fa76
7 changed files with 91 additions and 2 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/images/contact/top-screen/background.png"
hidden
/>
</template>

View File

@@ -0,0 +1,7 @@
<script setup lang="ts">
import Background from "./Background.vue";
</script>
<template>
<Background />
</template>