Samuel Shuert | 016ea02 | 2021-09-01 16:17:24 -0500 | [diff] [blame] | 1 | import Head from 'next/head' |
| 2 | import Image from 'next/image' |
| 3 | import styles from '../styles/Home.module.css' |
| 4 | import Card from '../Components/Card' |
pineafan | a5ce910 | 2021-09-02 17:21:31 +0100 | [diff] [blame] | 5 | import CardRow from '../Components/CardRow' |
| 6 | import Header from '../Components/Header' |
| 7 | import AutoSpacing from '../Components/AutoSpacing' |
| 8 | import SectionHeading from '../Components/SectionHeading' |
Samuel Shuert | 016ea02 | 2021-09-01 16:17:24 -0500 | [diff] [blame] | 9 | |
| 10 | export default function Home() { |
| 11 | return ( |
pineafan | a5ce910 | 2021-09-02 17:21:31 +0100 | [diff] [blame] | 12 | <> |
| 13 | <Header |
| 14 | name="Clicks Minute Per" |
pineafan | d494b85 | 2021-09-03 19:49:49 +0100 | [diff] [blame] | 15 | subtext="Custom Made Programs" |
pineafan | a5ce910 | 2021-09-02 17:21:31 +0100 | [diff] [blame] | 16 | gradient={["6576CC", "4B5899"]} |
pineafan | a841c76 | 2021-11-14 21:21:04 +0000 | [diff] [blame] | 17 | wave="web/waves/header/cmp" |
pineafan | a5ce910 | 2021-09-02 17:21:31 +0100 | [diff] [blame] | 18 | buttons={[]} |
| 19 | /> |
Samuel Shuert | 604e31d | 2021-09-02 16:06:20 -0500 | [diff] [blame] | 20 | <p id="start" /> |
pineafan | aed3024 | 2021-09-04 09:33:40 +0100 | [diff] [blame] | 21 | <AutoSpacing> |
pineafan | df39fd4 | 2021-09-04 16:05:27 +0100 | [diff] [blame] | 22 | <SectionHeading>Projects</SectionHeading> |
pineafan | aed3024 | 2021-09-04 09:33:40 +0100 | [diff] [blame] | 23 | <CardRow> |
| 24 | <Card |
pineafan | a841c76 | 2021-11-14 21:21:04 +0000 | [diff] [blame] | 25 | wave="gps" title="GPS" subtext="Cards Against Humanity on Discord" |
pineafan | f97734b | 2021-11-23 21:11:00 +0000 | [diff] [blame^] | 26 | icon="bots/gps/circle" |
pineafan | aed3024 | 2021-09-04 09:33:40 +0100 | [diff] [blame] | 27 | buttons={[ |
| 28 | {color: "6576CC", link: "https://discordapp.com/oauth2/authorize?client_id=679361555732627476&scope=bot&permissions=130048", text: "Invite"}, |
| 29 | {color: "6576CC", link: "/gps", text: "About"} |
pineafan | a5ce910 | 2021-09-02 17:21:31 +0100 | [diff] [blame] | 30 | ]} |
pineafan | aed3024 | 2021-09-04 09:33:40 +0100 | [diff] [blame] | 31 | buttonText={"FFFFFF"} gradient={["78ECF2", "71AFE5"]} |
| 32 | /> |
| 33 | <Card |
pineafan | a841c76 | 2021-11-14 21:21:04 +0000 | [diff] [blame] | 34 | wave="rsm" title="RSM" subtext="Moderation Redefined" |
pineafan | f97734b | 2021-11-23 21:11:00 +0000 | [diff] [blame^] | 35 | icon="bots/rsm/circle" |
pineafan | aed3024 | 2021-09-04 09:33:40 +0100 | [diff] [blame] | 36 | buttons={[ |
| 37 | {color: "424242", link: "https://discord.com/api/oauth2/authorize?client_id=715989276382462053&permissions=121295465718&scope=bot%20applications.commands",text:"Invite"}, |
| 38 | {color: "424242", link: "/rsm", text:"About"} |
pineafan | a5ce910 | 2021-09-02 17:21:31 +0100 | [diff] [blame] | 39 | ]} |
pineafan | aed3024 | 2021-09-04 09:33:40 +0100 | [diff] [blame] | 40 | buttonText={"FFFFFF"} gradient={["F27878", "D96B6B"]} |
| 41 | /> |
| 42 | <Card |
pineafan | a841c76 | 2021-11-14 21:21:04 +0000 | [diff] [blame] | 43 | wave="clicksforms" title="ClicksForms" subtext="Create custom forms for Discord" |
pineafan | f97734b | 2021-11-23 21:11:00 +0000 | [diff] [blame^] | 44 | icon="bots/clicksforms/circle" |
pineafan | aed3024 | 2021-09-04 09:33:40 +0100 | [diff] [blame] | 45 | buttons={[ |
| 46 | {color: "775EBF", link: "https://clicksminuteper.github.io/docs/clicksforms", text:"API", newTab: true}, |
| 47 | {color: "775EBF", link: "https://discord.com/api/oauth2/authorize?client_id=805392054678192169&permissions=2416307200&scope=bot%20applications.commands",text:"Invite"}, |
| 48 | {color: "775EBF", link: "/clicksforms", text: "About"} |
| 49 | ]} |
| 50 | buttonText={"FFFFFF"} gradient={["71AFE5", "6576CC"]} |
| 51 | /> |
| 52 | <Card |
pineafan | a841c76 | 2021-11-14 21:21:04 +0000 | [diff] [blame] | 53 | wave="castaway" title="Castaway" subtext="Stranded on Discord" |
pineafan | f97734b | 2021-11-23 21:11:00 +0000 | [diff] [blame^] | 54 | icon="bots/castaway/circle" |
pineafan | aed3024 | 2021-09-04 09:33:40 +0100 | [diff] [blame] | 55 | buttons={[ |
pineafan | aed3024 | 2021-09-04 09:33:40 +0100 | [diff] [blame] | 56 | {color: "F2D478", link: "/castaway", text: "About"} |
| 57 | ]} |
| 58 | buttonText={"000000"} gradient={["71AFE5", "78ECF2"]} |
| 59 | /> |
| 60 | <Card |
pineafan | a841c76 | 2021-11-14 21:21:04 +0000 | [diff] [blame] | 61 | wave="hooky" title="Hooky" subtext="Webhook protection for Discord" |
pineafan | f97734b | 2021-11-23 21:11:00 +0000 | [diff] [blame^] | 62 | icon="bots/hooky/circle" |
pineafan | aed3024 | 2021-09-04 09:33:40 +0100 | [diff] [blame] | 63 | buttons={[ |
pineafan | 71cf312 | 2021-09-04 21:54:44 +0100 | [diff] [blame] | 64 | {color: "EDC575", link: "https://discord.com/oauth2/authorize?client_id=752188923505279037&scope=bot&permissions=536882176", text: "Invite"}, |
pineafan | aed3024 | 2021-09-04 09:33:40 +0100 | [diff] [blame] | 65 | {color: "EDC575", link: "/hooky", text: "About"} |
| 66 | ]} |
| 67 | buttonText={"000000"} gradient={["424242", "8D8D8D"]} |
| 68 | /> |
| 69 | <Card |
pineafan | a841c76 | 2021-11-14 21:21:04 +0000 | [diff] [blame] | 70 | wave="clcks" title="Clcks" subtext="Clicks Minute Per web apps" |
| 71 | icon="web/icons/clcks" |
pineafan | aed3024 | 2021-09-04 09:33:40 +0100 | [diff] [blame] | 72 | buttons={[ |
| 73 | {color: "78ECF2", link: "https://clcks.dev", text: "View Apps" |
| 74 | }]} |
| 75 | buttonText={"000000"} gradient={["C4C4C4", "8D8D8D"]} |
| 76 | /> |
| 77 | </CardRow> |
pineafan | df39fd4 | 2021-09-04 16:05:27 +0100 | [diff] [blame] | 78 | <SectionHeading>Code Bases</SectionHeading> |
pineafan | aed3024 | 2021-09-04 09:33:40 +0100 | [diff] [blame] | 79 | <CardRow> |
| 80 | <Card |
pineafan | a841c76 | 2021-11-14 21:21:04 +0000 | [diff] [blame] | 81 | wave="github" title="GitHub" subtext="View our open source projects" |
| 82 | icon="web/icons/github" |
pineafan | aed3024 | 2021-09-04 09:33:40 +0100 | [diff] [blame] | 83 | buttons={[ |
| 84 | {color: "424242", link: "https://github.com/clicksminuteper", text: "Visit"} |
| 85 | ]} |
| 86 | buttonText={"FFFFFF"} gradient={["FFFFFF", "C4C4C4"]} |
| 87 | /> |
| 88 | <Card |
pineafan | a841c76 | 2021-11-14 21:21:04 +0000 | [diff] [blame] | 89 | wave="pypi" title="PyPi" subtext="View our modules for python" |
| 90 | icon="web/icons/pypi" |
pineafan | aed3024 | 2021-09-04 09:33:40 +0100 | [diff] [blame] | 91 | buttons={[ |
| 92 | {color: "FFC91E", link: "https://pypi.org/user/ClicksMinutePer/", text: "Visit"} |
| 93 | ]} |
| 94 | buttonText={"000000"} gradient={["2F6490", "3775A8"]} |
| 95 | /> |
| 96 | </CardRow> |
pineafan | df39fd4 | 2021-09-04 16:05:27 +0100 | [diff] [blame] | 97 | <SectionHeading>Socials</SectionHeading> |
pineafan | aed3024 | 2021-09-04 09:33:40 +0100 | [diff] [blame] | 98 | <CardRow> |
| 99 | <Card |
pineafan | a841c76 | 2021-11-14 21:21:04 +0000 | [diff] [blame] | 100 | wave="discord" title="Discord" subtext="Join our Discord server to talk with the community" |
| 101 | icon="web/icons/discord" |
pineafan | aed3024 | 2021-09-04 09:33:40 +0100 | [diff] [blame] | 102 | buttons={[ |
pineafan | a841c76 | 2021-11-14 21:21:04 +0000 | [diff] [blame] | 103 | {color: "404EED", link: "https://discord.gg/bPaNnxe", text: "Join"} |
pineafan | aed3024 | 2021-09-04 09:33:40 +0100 | [diff] [blame] | 104 | ]} |
| 105 | buttonText={"FFFFFF"} gradient={["404EED", "404EED"]} |
| 106 | /> |
| 107 | </CardRow> |
| 108 | </AutoSpacing> |
pineafan | a5ce910 | 2021-09-02 17:21:31 +0100 | [diff] [blame] | 109 | </> |
Samuel Shuert | 016ea02 | 2021-09-01 16:17:24 -0500 | [diff] [blame] | 110 | ) |
| 111 | } |