-
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.
- Loading branch information
1 parent
56f6ae9
commit 5285bb7
Showing
3 changed files
with
37 additions
and
1 deletion.
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
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"> | ||
How To Play | ||
</p> | ||
<p class="py-10 text-xl font-medium font-lg"> | ||
Here are the basics to get start playing. <br> | ||
Visit our GitBook for advanced information! | ||
</p> | ||
<a href="https://crowdcontrol-network.gitbook.io/"> | ||
<BaseCCButton | ||
:type="ButtonType.RED" | ||
> | ||
Open GitBook | ||
</BaseCCButton> | ||
</a> | ||
</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> |