First layout test

This commit is contained in:
Alexis
2023-05-08 22:27:21 +02:00
parent a5465d6483
commit 947c4b6c1f
13 changed files with 392 additions and 20 deletions

View File

@@ -1,5 +1,16 @@
<script lang="ts" setup>
import YrhButton from '@/components/YrhButton.vue'
import YrhHeading from '@/components/YrhHeading.vue'
</script>
<template>
<main>
<h1 class="text-3xl font-bold underline">Hello world!</h1>
<YrhHeading> MENU PRINCIPAL </YrhHeading>
<YrhButton has-square> Language </YrhButton>
<YrhButton has-square> Settings </YrhButton>
<YrhButton has-square> Camera </YrhButton>
<YrhButton has-square> Screen </YrhButton>
<YrhButton has-square> Sound </YrhButton>
<YrhButton has-square> Other </YrhButton>
</main>
</template>