blob: e3cf7684ea7e132666fb6c8a255ad9286da87afe [file] [log] [blame]
pineafan5b612d92022-02-17 19:22:50 +00001import { Card, CardRow } from '../Components/Card';
pineafane0283a82022-02-13 10:05:56 +00002import Header from '../Components/Header';
3import { AutoLayout, Panel, Title, Subtitle, Text, Divider } from '../Components/Panels';
pineafanf97734b2021-11-23 21:11:00 +00004
5export default function Home() {
6 return (
7 <>
8 <Header
9 name="Clicks Per Minute"
pineafane0283a82022-02-13 10:05:56 +000010 subtext="Crappy Projects Mate"
pineafanf97734b2021-11-23 21:11:00 +000011 gradient={["6576CC", "4B5899"]}
12 wave="web/waves/header/cmp"
13 buttons={[]}
14 />
15 <p id="start" />
pineafane0283a82022-02-13 10:05:56 +000016 <AutoLayout>
17 <Panel halfSize={false}>
18 <Title>Projects</Title>
19 <Divider />
20 <CardRow>
21 <Card
22 wave="gps" title="GPS" subtext="Satelite navigation on Discord - Get tracked easily"
23 icon="bots/gps/circle"
24 buttons={[
25 {color: "6576CC", link: "https://discordapp.com/oauth2/authorize?client_id=679361555732627476&scope=bot&permissions=130048", text: "Invite"},
26 {color: "6576CC", link: "/gps", text: "Abot"}
27 ]}
28 buttonText={"FFFFFF"} gradient={["78ECF2", "71AFE5"]}
29 />
30 <Card
31 wave="rsm" title="RSM" subtext="Moderation, it's about average"
32 icon="bots/rsm/circle"
33 buttons={[
34 {color: "424242", link: "https://discord.com/api/oauth2/authorize?client_id=715989276382462053&permissions=121295465718&scope=bot%20applications.commands",text:"Invite"},
35 {color: "424242", link: "/rsm", text:"About"}
36 ]}
37 buttonText={"FFFFFF"} gradient={["F27878", "D96B6B"]}
38 />
39 <Card
40 wave="clicksforms" title="ClocksForms" subtext="Submit your data directly to us!"
41 icon="bots/clicksforms/circle"
42 buttons={[
43 {color: "775EBF", link: "https://clicksminuteper.github.io/docs/clicksforms", text:"APi", newTab: true},
44 {color: "775EBF", link: "https://discord.com/api/oauth2/authorize?client_id=805392054678192169&permissions=2416307200&scope=bot%20applications.commands",text:"Invite"},
45 {color: "775EBF", link: "/clicksforms", text: "About"}
46 ]}
47 buttonText={"FFFFFF"} gradient={["71AFE5", "6576CC"]}
48 />
49 <Card
50 wave="castaway" title="Castway" subtext="Idk its not made yet, im just the web developer"
51 icon="bots/castaway/circle"
52 buttons={[
53 {color: "F2D478", link: "/castaway", text: "About"}
54 ]}
55 buttonText={"000000"} gradient={["71AFE5", "78ECF2"]}
56 />
57 <Card
58 wave="hooky" title="Hooky" subtext="No, its not what you think from that name"
59 icon="bots/hooky/circle"
60 buttons={[
61 {color: "EDC575", link: "https://discord.com/oauth2/authorize?client_id=752188923505279037&scope=bot&permissions=536882176", text: "Invit"},
62 {color: "EDC575", link: "/hooky", text: "e About"}
63 ]}
64 buttonText={"000000"} gradient={["424242", "8D8D8D"]}
65 />
66 <Card
67 wave="clcks" title="Clcks" subtext="(This one genuinely isn't a typo)"
68 icon="web/icons/clcks"
69 buttons={[
70 {color: "78ECF2", link: "https://clcks.dev", text: "View Apps"
71 }]}
72 buttonText={"000000"} gradient={["C4C4C4", "8D8D8D"]}
73 />
74 </CardRow>
75 </Panel>
76 <Panel halfSize={true}>
77 <Title>Steal our code</Title>
78 <Divider />
79 <Text>I dare you.</Text>
80 <CardRow>
81 <Card
82 wave="github" title="GitHub" subtext="Git clone someone's repo, and push to your own"
83 icon="web/icons/github"
84 buttons={[
85 {color: "424242", link: "https://github.com/clicksminuteper", text: "Sacrifice your soul"}
86 ]}
87 buttonText={"FFFFFF"} gradient={["FFFFFF", "C4C4C4"]}
88 />
89 <Card
90 wave="pypi" title="PyPi" subtext="pypipypipypipypipypipi"
91 icon="web/icons/pypi"
92 buttons={[
93 {color: "FFC91E", link: "https://pypi.org/user/ClicksMinutePer/", text: "Visit"}
94 ]}
95 buttonText={"000000"} gradient={["2F6490", "3775A8"]}
96 />
97 </CardRow>
98 </Panel>
99 <Panel halfSize={true}>
100 <Title>Stranger Danger</Title>
101 <Divider />
102 <Text>Your parents were right, this place is terrifying</Text>
103 <CardRow>
pineafanf97734b2021-11-23 21:11:00 +0000104 <Card
pineafane0283a82022-02-13 10:05:56 +0000105 wave="discord" title="Discord" subtext="No, dat cord sorry for the confusion"
pineafanf97734b2021-11-23 21:11:00 +0000106 icon="web/icons/discord"
107 buttons={[
108 {color: "404EED", link: "https://discord.gg/bPaNnxe", text: "Join"}
109 ]}
110 buttonText={"FFFFFF"} gradient={["404EED", "404EED"]}
111 />
pineafane0283a82022-02-13 10:05:56 +0000112 </CardRow>
113 </Panel>
114 </AutoLayout>
pineafanf97734b2021-11-23 21:11:00 +0000115 </>
116 )
117}