Files
KnockOutWhist-Frontend/src/components/DefaultMenu.vue
lq64 adbe2be534 feat: FRO-17 Added Rule Component and changed Mainmenu structure (#11)
Added a Rule Component and changed MainMenu Structure

Co-authored-by: LQ63 <lkhermann@web.de>
Reviewed-on: #11
Reviewed-by: Janis <janis-e@gmx.de>
Co-authored-by: lq64 <lq@blackhole.local>
Co-committed-by: lq64 <lq@blackhole.local>
2025-12-10 14:12:12 +01:00

22 lines
522 B
Vue

<script setup lang="ts">
import MainMenuBoxes from "@/components/MainMenuBoxes.vue";
</script>
<template>
<header class="text-center q-mb-xl">
<p
class="text-h5 text-grey-4 q-mt-md"
style="max-width: 900px; margin-left: auto; margin-right: auto;"
>
Welcome to KnockOutWhist! In this game you have to "knock-out" your opponents until you are the last player standing.
Do you have what it takes to be crowned the champion?
</p>
</header>
<MainMenuBoxes />
</template>
<style scoped>
</style>