-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
46 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
<script setup lang="ts"> | ||
import HeaderFooterView from "~/layouts/HeaderFooterView.vue"; | ||
useSeoMeta({ | ||
title: "BeatBuzzer", | ||
description: "A fun music quiz game", | ||
viewport: "width=device-width, initial-scale=1.0", | ||
}) | ||
</script> | ||
|
||
<template> | ||
<div class="bg-gradient-to-b from-indigo-500 via-purple-500 to-pink-500"> | ||
<HeaderFooterView> | ||
<template #header> | ||
<div> | ||
1A | ||
</div> | ||
<div> | ||
2B | ||
</div> | ||
<div> | ||
3C | ||
</div> | ||
</template> | ||
<template #content> | ||
<div class="flex justify-center items-end h-full space-x-1"> | ||
<button class="bg-[#22a9fb] hover:bg-blue-700 text-white font-bold py-20 rounded-3xl text-lg w-full"> | ||
Start Game | ||
</button> | ||
<button class="bg-[#22a9fb] hover:bg-blue-700 text-white font-bold py-20 rounded-3xl text-lg w-full"> | ||
Start Round | ||
</button> | ||
</div> | ||
</template> | ||
<template #footer> | ||
<div class="text-4xl">A</div> | ||
<div class="text-4xl">B</div> | ||
<div class="text-4xl">C</div> | ||
</template> | ||
</HeaderFooterView> | ||
</div> | ||
</template> |