blob: c7a8b1cbc253a2a7f060cf4197ca522fee77a945 [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 Paragraph from '../Components/Paragraph'
6import CardRow from '../Components/CardRow'
Samuel Shuert8aac6012021-09-02 13:21:30 -05007
8export default function Home() {
9 return (
10 <>
11 <Header
12 name="GPS"
13 subtext="Cards Against Humanity on Discord"
14 gradient={["78ECF2", "71AFE5"]}
15 wave="GS"
16 buttons={[
pineafan939ee982021-10-25 12:44:40 +010017 {color: "71AFE5", buttonText: "FFFFFF", link: "#features", text: "Features"},
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>
pineafan939ee982021-10-25 12:44:40 +010024 <SectionHeading id="features">Features</SectionHeading>
25 <CardRow>
26 <Card
27 icon="GPS/players"
28 title="Lots of friends?"
29 subtext="You probably don't have 50 friends - But if you did, you can play with every one of them at the same time"
30 wave="GS"
31 gradient={["78ECF2", "71AFE5"]}
32 />
33 <Card
34 icon="GPS/cards"
35 title="2000+ cards"
36 subtext="Enjoy games with over 2000 cards, written for you to insult others"
37 wave="CF"
38 gradient={["71AFE5", "6576CC"]}
39 />
40 <Card
41 icon="GPS/customisation"
42 title="Customisation."
43 subtext="Customise every setting of your game and be as pedantic as you wish"
44 wave="HY"
45 gradient={["424242", "8D8D8D"]}
46 />
47 <Card
48 icon="GPS/time"
49 title="Patience is a virtue"
50 subtext="But you don't have a lot of it - Your friends may be slow at picking cards, but you don't have to live with it"
51 wave="RM"
52 gradient={["F27878", "D96B6B"]}
53 />
54 <Card
55 icon="GPS/shuffles"
56 title="Shuffles"
57 subtext={`Replace your worst cards with new ones because \"The bot is unfair
58 and always gives me the worst cards and everyone else is better at the game than me\"`}
59 wave="CL"
60 gradient={["C4C4C4", "8D8D8D"]}
61 />
62 </CardRow>
pineafandf39fd42021-09-04 16:05:27 +010063 <SectionHeading id="commands">Commands</SectionHeading>
pineafan1cd55432021-09-04 16:09:58 +010064 <Paragraph><code>$getprefix</code>: Shows the bots prefix in the current guild.</Paragraph>
65 <Paragraph><code>$info</code>: View some information about the bot&apos;s owners.</Paragraph>
66 <Paragraph><code>$stats</code>: Shows the bot&apos;s current statistics.</Paragraph>
67 <Paragraph><code>$ping</code>: Gets the current response time of the bot.</Paragraph>
68 <Paragraph><code>$terms</code>: List all the terms and conditions for the bot.</Paragraph>
69 <Paragraph><code>$setlanguage</code>: Set what language you want to use for your packs.</Paragraph>
70 <Paragraph><code>$packs</code>: Shows a list of packs available in your language.</Paragraph>
71 <Paragraph><code>$play</code>: Starts the game.</Paragraph>
72 <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>
73 <Paragraph><code>$leave</code>: Removes the player who ran it from the current game in that channel.</Paragraph>
74 <Paragraph><code>$shuffle</code>: Reshuffles your cards.</Paragraph>
75 <Paragraph><code>$end</code>: Ends the current game in that channel.</Paragraph>
76 <Paragraph><code>$help</code>: Shows all commands</Paragraph>
pineafandf39fd42021-09-04 16:05:27 +010077 <SectionHeading id="invite">Invite</SectionHeading>
78 <CardRow>
79 <Card
80 wave="GS"
81 buttonText={"FFFFFF"} gradient={["78ECF2", "71AFE5"]}
82 title="Invite"
83 subtext="Invite GPS to your server"
84 buttons={[
85 {color: "424242", link: "https://discordapp.com/oauth2/authorize?client_id=679361555732627476&scope=bot&permissions=130048", text: "Invite"}
86 ]}
87 />
88 </CardRow>
89 </AutoSpacing>
Samuel Shuert8aac6012021-09-02 13:21:30 -050090 </>
91 )
92}