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>
22 lines
522 B
Vue
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>
|