blob: 4e68cbba1a5ac137202bd3b4ac8efba1683cdeaa [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
PineaFana465f352023-02-05 16:45:01 +00007export default function Home(props) {
pineafanf97734b2021-11-23 21:11:00 +00008 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={[]}
PineaFana465f352023-02-05 16:45:01 +000016 index={true}
17 fullscreen={true}
18 showSubBar={props.showSubBar}
19 season={props.season}
pineafanf97734b2021-11-23 21:11:00 +000020 />
pineafane0283a82022-02-13 10:05:56 +000021 <AutoLayout>
22 <Panel halfSize={false}>
23 <Title>Projects</Title>
24 <Divider />
25 <CardRow>
26 <Card
27 wave="gps" title="GPS" subtext="Satelite navigation on Discord - Get tracked easily"
28 icon="bots/gps/circle"
29 buttons={[
30 {color: "6576CC", link: "https://discordapp.com/oauth2/authorize?client_id=679361555732627476&scope=bot&permissions=130048", text: "Invite"},
31 {color: "6576CC", link: "/gps", text: "Abot"}
32 ]}
33 buttonText={"FFFFFF"} gradient={["78ECF2", "71AFE5"]}
34 />
35 <Card
36 wave="rsm" title="RSM" subtext="Moderation, it's about average"
37 icon="bots/rsm/circle"
38 buttons={[
39 {color: "424242", link: "https://discord.com/api/oauth2/authorize?client_id=715989276382462053&permissions=121295465718&scope=bot%20applications.commands",text:"Invite"},
40 {color: "424242", link: "/rsm", text:"About"}
41 ]}
42 buttonText={"FFFFFF"} gradient={["F27878", "D96B6B"]}
43 />
44 <Card
45 wave="clicksforms" title="ClocksForms" subtext="Submit your data directly to us!"
46 icon="bots/clicksforms/circle"
47 buttons={[
PineaFan41418622023-10-14 21:36:48 +010048 {color: "775EBF", link: "https://clickscodes.github.io/docs/clicksforms", text:"APi", newTab: true},
pineafane0283a82022-02-13 10:05:56 +000049 {color: "775EBF", link: "https://discord.com/api/oauth2/authorize?client_id=805392054678192169&permissions=2416307200&scope=bot%20applications.commands",text:"Invite"},
50 {color: "775EBF", link: "/clicksforms", text: "About"}
51 ]}
52 buttonText={"FFFFFF"} gradient={["71AFE5", "6576CC"]}
53 />
54 <Card
55 wave="castaway" title="Castway" subtext="Idk its not made yet, im just the web developer"
56 icon="bots/castaway/circle"
57 buttons={[
58 {color: "F2D478", link: "/castaway", text: "About"}
59 ]}
60 buttonText={"000000"} gradient={["71AFE5", "78ECF2"]}
61 />
62 <Card
63 wave="hooky" title="Hooky" subtext="No, its not what you think from that name"
64 icon="bots/hooky/circle"
65 buttons={[
66 {color: "EDC575", link: "https://discord.com/oauth2/authorize?client_id=752188923505279037&scope=bot&permissions=536882176", text: "Invit"},
67 {color: "EDC575", link: "/hooky", text: "e About"}
68 ]}
69 buttonText={"000000"} gradient={["424242", "8D8D8D"]}
70 />
71 <Card
72 wave="clcks" title="Clcks" subtext="(This one genuinely isn't a typo)"
73 icon="web/icons/clcks"
74 buttons={[
75 {color: "78ECF2", link: "https://clcks.dev", text: "View Apps"
76 }]}
77 buttonText={"000000"} gradient={["C4C4C4", "8D8D8D"]}
78 />
79 </CardRow>
80 </Panel>
81 <Panel halfSize={true}>
82 <Title>Steal our code</Title>
83 <Divider />
84 <Text>I dare you.</Text>
85 <CardRow>
86 <Card
87 wave="github" title="GitHub" subtext="Git clone someone's repo, and push to your own"
88 icon="web/icons/github"
89 buttons={[
PineaFan41418622023-10-14 21:36:48 +010090 {color: "424242", link: "https://github.com/clickscodes", text: "Sacrifice your soul"}
pineafane0283a82022-02-13 10:05:56 +000091 ]}
92 buttonText={"FFFFFF"} gradient={["FFFFFF", "C4C4C4"]}
93 />
94 <Card
95 wave="pypi" title="PyPi" subtext="pypipypipypipypipypipi"
96 icon="web/icons/pypi"
97 buttons={[
98 {color: "FFC91E", link: "https://pypi.org/user/ClicksMinutePer/", text: "Visit"}
99 ]}
100 buttonText={"000000"} gradient={["2F6490", "3775A8"]}
101 />
102 </CardRow>
103 </Panel>
104 <Panel halfSize={true}>
105 <Title>Stranger Danger</Title>
106 <Divider />
107 <Text>Your parents were right, this place is terrifying</Text>
108 <CardRow>
pineafanf97734b2021-11-23 21:11:00 +0000109 <Card
PineaFana465f352023-02-05 16:45:01 +0000110 wave="discord" title="This cord" subtext="No, dat cord sorry for the confusion"
pineafanf97734b2021-11-23 21:11:00 +0000111 icon="web/icons/discord"
112 buttons={[
113 {color: "404EED", link: "https://discord.gg/bPaNnxe", text: "Join"}
114 ]}
115 buttonText={"FFFFFF"} gradient={["404EED", "404EED"]}
116 />
pineafane0283a82022-02-13 10:05:56 +0000117 </CardRow>
118 </Panel>
119 </AutoLayout>
pineafanf97734b2021-11-23 21:11:00 +0000120 </>
121 )
122}