blob: 91f31e9d59238843297ee8d125512c29411ff09d [file] [log] [blame]
Samuel Shuert016ea022021-09-01 16:17:24 -05001import Head from 'next/head'
2import Image from 'next/image'
3import styles from '../styles/Home.module.css'
4import Card from '../Components/Card'
pineafana5ce9102021-09-02 17:21:31 +01005import CardRow from '../Components/CardRow'
6import Header from '../Components/Header'
7import AutoSpacing from '../Components/AutoSpacing'
8import SectionHeading from '../Components/SectionHeading'
Samuel Shuert016ea022021-09-01 16:17:24 -05009
10export default function Home() {
11 return (
pineafana5ce9102021-09-02 17:21:31 +010012 <>
13 <Header
14 name="Clicks Minute Per"
pineafand494b852021-09-03 19:49:49 +010015 subtext="Custom Made Programs"
pineafana5ce9102021-09-02 17:21:31 +010016 gradient={["6576CC", "4B5899"]}
17 wave="Main"
18 buttons={[]}
19 />
Samuel Shuert604e31d2021-09-02 16:06:20 -050020 <p id="start" />
pineafana5ce9102021-09-02 17:21:31 +010021 <AutoSpacing
22 elements={[
23 <SectionHeading title="Projects" />,
24 <CardRow tiles={[
25 <Card
26 wave="GS" title="GPS" subtext="Cards Against Humanity on Discord"
27 buttons={[
Samuel Shuert52f37772021-09-02 12:29:40 -050028 {color: "6576CC", link: "https://discordapp.com/oauth2/authorize?client_id=679361555732627476&scope=bot&permissions=130048", text: "Invite"},
29 {color: "6576CC", link: "/gps", text: "About"}
pineafana5ce9102021-09-02 17:21:31 +010030 ]}
31 buttonText={"FFFFFF"} gradient={["78ECF2", "71AFE5"]}
32 />,
33 <Card
34 wave="RM" title="RSM" subtext="Moderation Redefined"
35 buttons={[
Samuel Shuert52f37772021-09-02 12:29:40 -050036 {color: "424242", link: "https://discord.com/api/oauth2/authorize?client_id=715989276382462053&permissions=121295465718&scope=bot%20applications.commands",text:"Invite"},
37 {color: "424242", link: "/rsm", text:"About"}
pineafana5ce9102021-09-02 17:21:31 +010038 ]}
39 buttonText={"FFFFFF"} gradient={["F27878", "D96B6B"]}
40 />,
41 <Card
42 wave="CF" title="ClicksForms" subtext="Create custom forms for Discord"
43 buttons={[
Samuel Shuert52f37772021-09-02 12:29:40 -050044 {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"}
pineafana5ce9102021-09-02 17:21:31 +010047 ]}
48 buttonText={"FFFFFF"} gradient={["71AFE5", "6576CC"]}
49 />,
50 <Card
51 wave="CA" title="Castaway" subtext="Stranded on Discord"
Samuel Shuert52f37772021-09-02 12:29:40 -050052 buttons={[
53 {color: "F2D478", link: "/", text: "Invite"},
54 {color: "F2D478", link: "/castaway", text: "About"}
55 ]}
pineafana5ce9102021-09-02 17:21:31 +010056 buttonText={"000000"} gradient={["71AFE5", "78ECF2"]}
57 />,
58 <Card
59 wave="HY" title="Hooky" subtext="Webhook protection for Discord"
Samuel Shuert52f37772021-09-02 12:29:40 -050060 buttons={[
61 {color: "EDC575", link: "/", text: "Invite"},
62 {color: "EDC575", link: "/hooky", text: "About"}
63 ]}
pineafana5ce9102021-09-02 17:21:31 +010064 buttonText={"000000"} gradient={["424242", "8D8D8D"]}
65 />,
66 <Card
67 wave="CL" title="Clcks" subtext="Clicks Minute Per web apps"
Samuel Shuert52f37772021-09-02 12:29:40 -050068 buttons={[
69 {color: "78ECF2", link: "https://clcks.dev", text: "View Apps"
70 }]}
pineafana5ce9102021-09-02 17:21:31 +010071 buttonText={"000000"} gradient={["C4C4C4", "8D8D8D"]}
72 />
73 ]}
74 />,
75 <SectionHeading title="Code Bases" />,
76 <CardRow tiles={[
77 <Card
78 wave="GH" title="GitHub" subtext="View our open source projects"
79 buttons={[
80 {color: "424242", link: "https://github.com/clicksminuteper", text: "Visit"}
Samuel Shuert52f37772021-09-02 12:29:40 -050081 ]}
pineafana5ce9102021-09-02 17:21:31 +010082 buttonText={"FFFFFF"} gradient={["FFFFFF", "C4C4C4"]}
83 />,
84 <Card
85 wave="PY" title="PyPi" subtext="View our modules for python"
86 buttons={[
87 {color: "FFC91E", link: "https://pypi.org/user/ClicksMinutePer/", text: "Visit"}
Samuel Shuert52f37772021-09-02 12:29:40 -050088 ]}
pineafana5ce9102021-09-02 17:21:31 +010089 buttonText={"000000"} gradient={["2F6490", "3775A8"]}
90 />
91 ]}/>,
92 <SectionHeading title="Socials" />,
93 <CardRow tiles={[
94 <Card
95 wave="DS" title="Discord" subtext="Join our Discord server to talk with the community"
96 buttons={[
97 {color: "424242", link: "https://discord.gg/bPaNnxe", text: "Join"}
Samuel Shuert52f37772021-09-02 12:29:40 -050098 ]}
pineafana5ce9102021-09-02 17:21:31 +010099 buttonText={"FFFFFF"} gradient={["404EED", "404EED"]}
100 />
101 ]}
102 />
103 ]}/>
104 </>
Samuel Shuert016ea022021-09-01 16:17:24 -0500105 )
106}