feat: add navigation buttons to bottom home screen

This commit is contained in:
2025-11-12 15:30:54 +01:00
parent cd1586292b
commit 3d18e027f9
11 changed files with 185 additions and 7 deletions

View File

@@ -1,7 +1,12 @@
<template>
<Screen>
<HomeBottomScreenBackground />
<script setup lang="ts">
import Background from "./Background.vue";
import Buttons from "./Buttons/Buttons.vue";
<slot />
</Screen>
const selectedButton: "game" | "pictochat" | "downloadPlay" = "game";
</script>
<template>
<Background />
<Buttons />
</template>