-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #279 from DecentralCardGame/play-page
play page implement and linked to it on other pages
- Loading branch information
Showing
6 changed files
with
62 additions
and
15 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
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
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 |
---|---|---|
|
@@ -14,7 +14,7 @@ | |
<BaseCCButton | ||
:type="ButtonType.RED" | ||
> | ||
Open GitBook | ||
Open GitBook | ||
</BaseCCButton> | ||
</a> | ||
</div> | ||
|
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,30 @@ | ||
<template> | ||
<div > | ||
<FadeTeaser> | ||
<div class="px-0 py-40 flex text-center justify-center"> | ||
<div> | ||
<p class="text-5xl font-black text-red-600 font-lg"> | ||
Play the Game! | ||
</p> | ||
<p class="py-10 text-xl font-medium font-lg"> | ||
Our alpha version is currently in development <br> | ||
and not publicly released :( <br> | ||
We only do closed playtests at the moment. <br> | ||
The button below will do nothing. | ||
</p> | ||
<BaseCCButton | ||
:type="ButtonType.RED" | ||
> | ||
Download Gameclient | ||
</BaseCCButton> | ||
</div> | ||
</div> | ||
</FadeTeaser> | ||
</div> | ||
</template> | ||
|
||
<script setup lang="ts"> | ||
import FadeTeaser from "@/components/elements/FadeTeaser.vue"; | ||
import BaseCCButton from "@/components/elements/CCButton/BaseCCButton.vue"; | ||
import { ButtonType } from "@/components/elements/CCButton/ButtonType"; | ||
</script> |