Samuel Shuert | 8aac601 | 2021-09-02 13:21:30 -0500 | [diff] [blame] | 1 | import Card from '../Components/Card' |
Samuel Shuert | 8aac601 | 2021-09-02 13:21:30 -0500 | [diff] [blame] | 2 | import Header from '../Components/Header' |
| 3 | import AutoSpacing from '../Components/AutoSpacing' |
| 4 | import SectionHeading from '../Components/SectionHeading' |
pineafan | df39fd4 | 2021-09-04 16:05:27 +0100 | [diff] [blame] | 5 | import Subheading from '../Components/Subheading' |
| 6 | import Paragraph from '../Components/Paragraph' |
| 7 | import CardRow from '../Components/CardRow' |
Samuel Shuert | 8aac601 | 2021-09-02 13:21:30 -0500 | [diff] [blame] | 8 | |
| 9 | export default function Home() { |
| 10 | return ( |
| 11 | <> |
| 12 | <Header |
| 13 | name="GPS" |
| 14 | subtext="Cards Against Humanity on Discord" |
| 15 | gradient={["78ECF2", "71AFE5"]} |
| 16 | wave="GS" |
| 17 | buttons={[ |
Samuel Shuert | 8aac601 | 2021-09-02 13:21:30 -0500 | [diff] [blame] | 18 | {color: "71AFE5", buttonText: "FFFFFF", link: "#commands", text: "Commands"}, |
| 19 | {color: "6576CC", buttonText: "FFFFFF", link: "#invite", text: "Invite"} |
| 20 | ]} |
| 21 | hideArrow={true} |
| 22 | /> |
pineafan | aed3024 | 2021-09-04 09:33:40 +0100 | [diff] [blame] | 23 | <AutoSpacing> |
pineafan | df39fd4 | 2021-09-04 16:05:27 +0100 | [diff] [blame] | 24 | <SectionHeading id="commands">Commands</SectionHeading> |
pineafan | 1cd5543 | 2021-09-04 16:09:58 +0100 | [diff] [blame^] | 25 | <Paragraph><code>$getprefix</code>: Shows the bots prefix in the current guild.</Paragraph> |
| 26 | <Paragraph><code>$info</code>: View some information about the bot's owners.</Paragraph> |
| 27 | <Paragraph><code>$stats</code>: Shows the bot's current statistics.</Paragraph> |
| 28 | <Paragraph><code>$ping</code>: Gets the current response time of the bot.</Paragraph> |
| 29 | <Paragraph><code>$terms</code>: List all the terms and conditions for the bot.</Paragraph> |
| 30 | <Paragraph><code>$setlanguage</code>: Set what language you want to use for your packs.</Paragraph> |
| 31 | <Paragraph><code>$packs</code>: Shows a list of packs available in your language.</Paragraph> |
| 32 | <Paragraph><code>$play</code>: Starts the game.</Paragraph> |
| 33 | <Paragraph><code>$join</code>: Joins an active game in the channel. This can be during the 1m period when starting a game, or midway through.</Paragraph> |
| 34 | <Paragraph><code>$leave</code>: Removes the player who ran it from the current game in that channel.</Paragraph> |
| 35 | <Paragraph><code>$shuffle</code>: Reshuffles your cards.</Paragraph> |
| 36 | <Paragraph><code>$end</code>: Ends the current game in that channel.</Paragraph> |
| 37 | <Paragraph><code>$help</code>: Shows all commands</Paragraph> |
pineafan | df39fd4 | 2021-09-04 16:05:27 +0100 | [diff] [blame] | 38 | <SectionHeading id="invite">Invite</SectionHeading> |
| 39 | <CardRow> |
| 40 | <Card |
| 41 | wave="GS" |
| 42 | buttonText={"FFFFFF"} gradient={["78ECF2", "71AFE5"]} |
| 43 | title="Invite" |
| 44 | subtext="Invite GPS to your server" |
| 45 | buttons={[ |
| 46 | {color: "424242", link: "https://discordapp.com/oauth2/authorize?client_id=679361555732627476&scope=bot&permissions=130048", text: "Invite"} |
| 47 | ]} |
| 48 | /> |
| 49 | </CardRow> |
| 50 | </AutoSpacing> |
Samuel Shuert | 8aac601 | 2021-09-02 13:21:30 -0500 | [diff] [blame] | 51 | </> |
| 52 | ) |
| 53 | } |