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