blob: 884c384cc38b70a1d5799c00c66c91b373cdea32 [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" />
pineafanaed30242021-09-04 09:33:40 +010021 <AutoSpacing>
pineafandf39fd42021-09-04 16:05:27 +010022 <SectionHeading>Projects</SectionHeading>
pineafanaed30242021-09-04 09:33:40 +010023 <CardRow>
24 <Card
25 wave="GS" title="GPS" subtext="Cards Against Humanity on Discord"
26 buttons={[
27 {color: "6576CC", link: "https://discordapp.com/oauth2/authorize?client_id=679361555732627476&scope=bot&permissions=130048", text: "Invite"},
28 {color: "6576CC", link: "/gps", text: "About"}
pineafana5ce9102021-09-02 17:21:31 +010029 ]}
pineafanaed30242021-09-04 09:33:40 +010030 buttonText={"FFFFFF"} gradient={["78ECF2", "71AFE5"]}
31 />
32 <Card
33 wave="RM" title="RSM" subtext="Moderation Redefined"
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"}
pineafana5ce9102021-09-02 17:21:31 +010037 ]}
pineafanaed30242021-09-04 09:33:40 +010038 buttonText={"FFFFFF"} gradient={["F27878", "D96B6B"]}
39 />
40 <Card
41 wave="CF" title="ClicksForms" subtext="Create custom forms for Discord"
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="CA" title="Castaway" subtext="Stranded on Discord"
51 buttons={[
pineafanaed30242021-09-04 09:33:40 +010052 {color: "F2D478", link: "/castaway", text: "About"}
53 ]}
54 buttonText={"000000"} gradient={["71AFE5", "78ECF2"]}
55 />
56 <Card
57 wave="HY" title="Hooky" subtext="Webhook protection for Discord"
58 buttons={[
pineafan71cf3122021-09-04 21:54:44 +010059 {color: "EDC575", link: "https://discord.com/oauth2/authorize?client_id=752188923505279037&scope=bot&permissions=536882176", text: "Invite"},
pineafanaed30242021-09-04 09:33:40 +010060 {color: "EDC575", link: "/hooky", text: "About"}
61 ]}
62 buttonText={"000000"} gradient={["424242", "8D8D8D"]}
63 />
64 <Card
65 wave="CL" title="Clcks" subtext="Clicks Minute Per web apps"
66 buttons={[
67 {color: "78ECF2", link: "https://clcks.dev", text: "View Apps"
68 }]}
69 buttonText={"000000"} gradient={["C4C4C4", "8D8D8D"]}
70 />
71 </CardRow>
pineafandf39fd42021-09-04 16:05:27 +010072 <SectionHeading>Code Bases</SectionHeading>
pineafanaed30242021-09-04 09:33:40 +010073 <CardRow>
74 <Card
75 wave="GH" title="GitHub" subtext="View our open source projects"
76 buttons={[
77 {color: "424242", link: "https://github.com/clicksminuteper", text: "Visit"}
78 ]}
79 buttonText={"FFFFFF"} gradient={["FFFFFF", "C4C4C4"]}
80 />
81 <Card
82 wave="PY" title="PyPi" subtext="View our modules for python"
83 buttons={[
84 {color: "FFC91E", link: "https://pypi.org/user/ClicksMinutePer/", text: "Visit"}
85 ]}
86 buttonText={"000000"} gradient={["2F6490", "3775A8"]}
87 />
88 </CardRow>
pineafandf39fd42021-09-04 16:05:27 +010089 <SectionHeading>Socials</SectionHeading>
pineafanaed30242021-09-04 09:33:40 +010090 <CardRow>
91 <Card
92 wave="DS" title="Discord" subtext="Join our Discord server to talk with the community"
93 buttons={[
94 {color: "424242", link: "https://discord.gg/bPaNnxe", text: "Join"}
95 ]}
96 buttonText={"FFFFFF"} gradient={["404EED", "404EED"]}
97 />
98 </CardRow>
99 </AutoSpacing>
pineafana5ce9102021-09-02 17:21:31 +0100100 </>
Samuel Shuert016ea022021-09-01 16:17:24 -0500101 )
102}