blob: 4a52ff1cfd59a8dcafebfd10b4139e7aab072ff5 [file] [log] [blame]
Samuel Shuert8aac6012021-09-02 13:21:30 -05001import Card from '../Components/Card'
Samuel Shuert8aac6012021-09-02 13:21:30 -05002import Header from '../Components/Header'
3import AutoSpacing from '../Components/AutoSpacing'
4import SectionHeading from '../Components/SectionHeading'
pineafandf39fd42021-09-04 16:05:27 +01005import Subheading from '../Components/Subheading'
6import Paragraph from '../Components/Paragraph'
7import CardRow from '../Components/CardRow'
Samuel Shuert8aac6012021-09-02 13:21:30 -05008
9export 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 Shuert8aac6012021-09-02 13:21:30 -050018 {color: "71AFE5", buttonText: "FFFFFF", link: "#commands", text: "Commands"},
19 {color: "6576CC", buttonText: "FFFFFF", link: "#invite", text: "Invite"}
20 ]}
21 hideArrow={true}
22 />
pineafanaed30242021-09-04 09:33:40 +010023 <AutoSpacing>
pineafandf39fd42021-09-04 16:05:27 +010024 <SectionHeading id="commands">Commands</SectionHeading>
pineafan1cd55432021-09-04 16:09:58 +010025 <Paragraph><code>$getprefix</code>: Shows the bots prefix in the current guild.</Paragraph>
26 <Paragraph><code>$info</code>: View some information about the bot&apos;s owners.</Paragraph>
27 <Paragraph><code>$stats</code>: Shows the bot&apos;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>
pineafandf39fd42021-09-04 16:05:27 +010038 <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 Shuert8aac6012021-09-02 13:21:30 -050051 </>
52 )
53}