pineafan | 5b612d9 | 2022-02-17 19:22:50 +0000 | [diff] [blame] | 1 | import { Card, CardRow } from '../Components/Card'; |
pineafan | e0283a8 | 2022-02-13 10:05:56 +0000 | [diff] [blame] | 2 | import Header from '../Components/Header'; |
| 3 | import { AutoLayout, Panel, Title, Subtitle, Text, Divider } from '../Components/Panels'; |
Samuel Shuert | 016ea02 | 2021-09-01 16:17:24 -0500 | [diff] [blame] | 4 | |
pineafan | 74f1674 | 2022-11-07 21:57:55 +0000 | [diff] [blame^] | 5 | const duplicate = (arr, numberOfRepetitions) => arr.flatMap(i => Array.from({ length: numberOfRepetitions }).fill(i)); |
| 6 | |
pineafan | 7bd0ad6 | 2022-10-26 22:11:29 +0100 | [diff] [blame] | 7 | export default function Home(props) { |
Samuel Shuert | 016ea02 | 2021-09-01 16:17:24 -0500 | [diff] [blame] | 8 | return ( |
pineafan | a5ce910 | 2021-09-02 17:21:31 +0100 | [diff] [blame] | 9 | <> |
| 10 | <Header |
pineafan | ff3d452 | 2022-05-06 19:51:02 +0100 | [diff] [blame] | 11 | name="Clicks" |
pineafan | 74f1674 | 2022-11-07 21:57:55 +0000 | [diff] [blame^] | 12 | subtext="We develop " |
pineafan | ff3d452 | 2022-05-06 19:51:02 +0100 | [diff] [blame] | 13 | customImage="https://assets.clicks.codes/web/logos/clicks.svg" |
| 14 | embedImage="https://assets.clicks.codes/web/logos/clicks.png" |
pineafan | a5ce910 | 2021-09-02 17:21:31 +0100 | [diff] [blame] | 15 | gradient={["6576CC", "4B5899"]} |
pineafan | a841c76 | 2021-11-14 21:21:04 +0000 | [diff] [blame] | 16 | wave="web/waves/header/cmp" |
pineafan | a5ce910 | 2021-09-02 17:21:31 +0100 | [diff] [blame] | 17 | buttons={[]} |
pineafan | ff3d452 | 2022-05-06 19:51:02 +0100 | [diff] [blame] | 18 | index={true} |
pineafan | d94d40e | 2022-10-23 19:55:29 +0100 | [diff] [blame] | 19 | fullscreen={true} |
pineafan | b18f019 | 2022-10-27 22:08:36 +0100 | [diff] [blame] | 20 | showSubBar={props.showSubBar} |
pineafan | 74f1674 | 2022-11-07 21:57:55 +0000 | [diff] [blame^] | 21 | effects={{ type: 50, changingSubtext: { |
| 22 | common: [ |
| 23 | "websites", "Discord bots", "utilities", "APIs" |
| 24 | ], rare: ["overly complicated header animations"] |
| 25 | }}} |
pineafan | a5ce910 | 2021-09-02 17:21:31 +0100 | [diff] [blame] | 26 | /> |
pineafan | e0283a8 | 2022-02-13 10:05:56 +0000 | [diff] [blame] | 27 | <AutoLayout> |
| 28 | <Panel halfSize={false}> |
| 29 | <Title>Projects</Title> |
| 30 | <Divider /> |
pineafan | d94d40e | 2022-10-23 19:55:29 +0100 | [diff] [blame] | 31 | <Text>{"Here's things we've released and are in the making"}</Text> |
pineafan | e0283a8 | 2022-02-13 10:05:56 +0000 | [diff] [blame] | 32 | <CardRow> |
| 33 | <Card |
| 34 | wave="gps" title="GPS" subtext="Cards Against Humanity on Discord" |
| 35 | icon="bots/gps/circle" |
| 36 | buttons={[ |
| 37 | {color: "6576CC", link: "https://discordapp.com/oauth2/authorize?client_id=679361555732627476&scope=bot&permissions=130048", text: "Invite"}, |
pineafan | ff3d452 | 2022-05-06 19:51:02 +0100 | [diff] [blame] | 38 | {color: "6576CC", link: "/gps", text: "About"} |
pineafan | e0283a8 | 2022-02-13 10:05:56 +0000 | [diff] [blame] | 39 | ]} |
| 40 | buttonText={"FFFFFF"} gradient={["78ECF2", "71AFE5"]} |
pineafan | ff3d452 | 2022-05-06 19:51:02 +0100 | [diff] [blame] | 41 | url="/gps" |
pineafan | b18f019 | 2022-10-27 22:08:36 +0100 | [diff] [blame] | 42 | showMessage={props.showMessage} |
pineafan | e0283a8 | 2022-02-13 10:05:56 +0000 | [diff] [blame] | 43 | /> |
| 44 | <Card |
pineafan | 802daca | 2022-10-24 21:57:29 +0100 | [diff] [blame] | 45 | wave="rsm" title="RSM" subtext="Moderation Redefined" |
pineafan | e0283a8 | 2022-02-13 10:05:56 +0000 | [diff] [blame] | 46 | icon="bots/rsm/circle" |
| 47 | buttons={[ |
| 48 | {color: "424242", link: "https://discord.com/api/oauth2/authorize?client_id=715989276382462053&permissions=121295465718&scope=bot%20applications.commands",text:"Invite"}, |
pineafan | ff3d452 | 2022-05-06 19:51:02 +0100 | [diff] [blame] | 49 | {color: "424242", link: "/rsm", text:"About"} |
pineafan | e0283a8 | 2022-02-13 10:05:56 +0000 | [diff] [blame] | 50 | ]} |
| 51 | buttonText={"FFFFFF"} gradient={["F27878", "D96B6B"]} |
pineafan | ff3d452 | 2022-05-06 19:51:02 +0100 | [diff] [blame] | 52 | url="/rsm" |
pineafan | b18f019 | 2022-10-27 22:08:36 +0100 | [diff] [blame] | 53 | showMessage={props.showMessage} |
pineafan | e0283a8 | 2022-02-13 10:05:56 +0000 | [diff] [blame] | 54 | /> |
| 55 | <Card |
| 56 | wave="clicksforms" title="ClicksForms" subtext="Create custom forms for Discord" |
| 57 | icon="bots/clicksforms/circle" |
| 58 | buttons={[ |
pineafan | ff3d452 | 2022-05-06 19:51:02 +0100 | [diff] [blame] | 59 | {color: "775EBF", link: "https://clicksminuteper.github.io/docs/clicksforms", text:"API", newTab: true}, |
pineafan | e0283a8 | 2022-02-13 10:05:56 +0000 | [diff] [blame] | 60 | {color: "775EBF", link: "https://discord.com/api/oauth2/authorize?client_id=805392054678192169&permissions=2416307200&scope=bot%20applications.commands",text:"Invite"}, |
pineafan | ff3d452 | 2022-05-06 19:51:02 +0100 | [diff] [blame] | 61 | {color: "775EBF", link: "/clicksforms", text: "About"} |
pineafan | e0283a8 | 2022-02-13 10:05:56 +0000 | [diff] [blame] | 62 | ]} |
| 63 | buttonText={"FFFFFF"} gradient={["71AFE5", "6576CC"]} |
pineafan | ff3d452 | 2022-05-06 19:51:02 +0100 | [diff] [blame] | 64 | url="/clicksforms" |
pineafan | e0283a8 | 2022-02-13 10:05:56 +0000 | [diff] [blame] | 65 | /> |
| 66 | <Card |
| 67 | wave="castaway" title="Castaway" subtext="Stranded on Discord" |
| 68 | icon="bots/castaway/circle" |
| 69 | buttons={[ |
pineafan | ff3d452 | 2022-05-06 19:51:02 +0100 | [diff] [blame] | 70 | {color: "F2D478", link: "/castaway", text: "About"} |
pineafan | e0283a8 | 2022-02-13 10:05:56 +0000 | [diff] [blame] | 71 | ]} |
| 72 | buttonText={"000000"} gradient={["71AFE5", "78ECF2"]} |
pineafan | ff3d452 | 2022-05-06 19:51:02 +0100 | [diff] [blame] | 73 | url="/castaway" |
pineafan | e0283a8 | 2022-02-13 10:05:56 +0000 | [diff] [blame] | 74 | /> |
| 75 | <Card |
| 76 | wave="hooky" title="Hooky" subtext="Webhook protection for Discord" |
pineafan | b7c7974 | 2022-11-06 18:08:36 +0000 | [diff] [blame] | 77 | icon={"bots/hooky/circle"} |
pineafan | e0283a8 | 2022-02-13 10:05:56 +0000 | [diff] [blame] | 78 | buttons={[ |
| 79 | {color: "EDC575", link: "https://discord.com/oauth2/authorize?client_id=752188923505279037&scope=bot&permissions=536882176", text: "Invite"}, |
pineafan | ff3d452 | 2022-05-06 19:51:02 +0100 | [diff] [blame] | 80 | {color: "EDC575", link: "/hooky", text: "About"} |
pineafan | e0283a8 | 2022-02-13 10:05:56 +0000 | [diff] [blame] | 81 | ]} |
| 82 | buttonText={"000000"} gradient={["424242", "8D8D8D"]} |
pineafan | ff3d452 | 2022-05-06 19:51:02 +0100 | [diff] [blame] | 83 | url="/hooky" |
pineafan | e0283a8 | 2022-02-13 10:05:56 +0000 | [diff] [blame] | 84 | /> |
pineafan | b7c7974 | 2022-11-06 18:08:36 +0000 | [diff] [blame] | 85 | <Card |
| 86 | title="New projects..." subtext="We're actively working on projects! You can join our Discord to find out more." |
| 87 | buttons={[ |
| 88 | {color: "6576CC", link: "https://discord.gg/bPaNnxe", text:"Join our Discord"} |
| 89 | ]} |
| 90 | buttonText={"FFFFFF"} border={"C4C4C4"} |
| 91 | url="/" overwritePosition={"center"} |
| 92 | /> |
pineafan | e0283a8 | 2022-02-13 10:05:56 +0000 | [diff] [blame] | 93 | </CardRow> |
| 94 | </Panel> |
| 95 | <Panel halfSize={true}> |
| 96 | <Title>Code Bases</Title> |
| 97 | <Divider /> |
pineafan | d94d40e | 2022-10-23 19:55:29 +0100 | [diff] [blame] | 98 | <Text>We release open source projects in a few different places depending on the language and purpose</Text> |
pineafan | e0283a8 | 2022-02-13 10:05:56 +0000 | [diff] [blame] | 99 | <CardRow> |
| 100 | <Card |
| 101 | wave="github" title="GitHub" subtext="View our open source projects" |
| 102 | icon="web/icons/github" |
| 103 | buttons={[ |
| 104 | {color: "424242", link: "https://github.com/clicksminuteper", text: "Visit"} |
| 105 | ]} |
| 106 | buttonText={"FFFFFF"} gradient={["FFFFFF", "C4C4C4"]} |
pineafan | ff3d452 | 2022-05-06 19:51:02 +0100 | [diff] [blame] | 107 | url="https://github.com/clicksminuteper" |
pineafan | e0283a8 | 2022-02-13 10:05:56 +0000 | [diff] [blame] | 108 | /> |
| 109 | <Card |
| 110 | wave="pypi" title="PyPi" subtext="View our modules for python" |
| 111 | icon="web/icons/pypi" |
| 112 | buttons={[ |
| 113 | {color: "FFC91E", link: "https://pypi.org/user/ClicksMinutePer/", text: "Visit"} |
| 114 | ]} |
| 115 | buttonText={"000000"} gradient={["2F6490", "3775A8"]} |
pineafan | ff3d452 | 2022-05-06 19:51:02 +0100 | [diff] [blame] | 116 | url="https://pypi.org/user/ClicksMinutePer/" |
pineafan | e0283a8 | 2022-02-13 10:05:56 +0000 | [diff] [blame] | 117 | /> |
| 118 | </CardRow> |
| 119 | </Panel> |
| 120 | <Panel halfSize={true}> |
| 121 | <Title>Socials</Title> |
| 122 | <Divider /> |
pineafan | b7c7974 | 2022-11-06 18:08:36 +0000 | [diff] [blame] | 123 | <Text>{"We've got Discord, feel free to ask us anything"}</Text> |
pineafan | e0283a8 | 2022-02-13 10:05:56 +0000 | [diff] [blame] | 124 | <CardRow> |
pineafan | ff3d452 | 2022-05-06 19:51:02 +0100 | [diff] [blame] | 125 | <Card |
| 126 | wave="discord" title="Discord" subtext="Join our Discord server to talk with the community" |
| 127 | icon="web/icons/discord" |
| 128 | buttons={[ |
| 129 | {color: "404EED", link: "https://discord.gg/bPaNnxe", text: "Join"} |
| 130 | ]} |
| 131 | buttonText={"FFFFFF"} gradient={["404EED", "404EED"]} |
| 132 | url="https://discord.gg/bPaNnxe" |
| 133 | /> |
pineafan | e0283a8 | 2022-02-13 10:05:56 +0000 | [diff] [blame] | 134 | </CardRow> |
| 135 | </Panel> |
| 136 | </AutoLayout> |
pineafan | a5ce910 | 2021-09-02 17:21:31 +0100 | [diff] [blame] | 137 | </> |
Samuel Shuert | 016ea02 | 2021-09-01 16:17:24 -0500 | [diff] [blame] | 138 | ) |
| 139 | } |