pineafan | 5b612d9 | 2022-02-17 19:22:50 +0000 | [diff] [blame] | 1 | import { Card, CardRow } from '../Components/Card'; |
pineafan | 71cf312 | 2021-09-04 21:54:44 +0100 | [diff] [blame] | 2 | import Header from '../Components/Header' |
pineafan | e0283a8 | 2022-02-13 10:05:56 +0000 | [diff] [blame] | 3 | import { AutoLayout, Panel, Title, Subtitle, Text, Divider } from '../Components/Panels'; |
pineafan | 71cf312 | 2021-09-04 21:54:44 +0100 | [diff] [blame] | 4 | |
PineaFan | a465f35 | 2023-02-05 16:45:01 +0000 | [diff] [blame] | 5 | export default function Home(props) { |
pineafan | 71cf312 | 2021-09-04 21:54:44 +0100 | [diff] [blame] | 6 | return ( |
| 7 | <> |
| 8 | <Header |
| 9 | name="Hooky" |
| 10 | subtext="Webhook protection for Discord" |
| 11 | gradient={["424242", "8D8D8D"]} |
pineafan | a841c76 | 2021-11-14 21:21:04 +0000 | [diff] [blame] | 12 | wave="web/waves/header/hooky" |
pineafan | 71cf312 | 2021-09-04 21:54:44 +0100 | [diff] [blame] | 13 | buttons={[ |
| 14 | {color: "EDC575", buttonText: "000000", link: "#invite", text: "Invite"} |
| 15 | ]} |
PineaFan | a465f35 | 2023-02-05 16:45:01 +0000 | [diff] [blame] | 16 | season={props.season} |
pineafan | 71cf312 | 2021-09-04 21:54:44 +0100 | [diff] [blame] | 17 | /> |
pineafan | e0283a8 | 2022-02-13 10:05:56 +0000 | [diff] [blame] | 18 | <AutoLayout> |
| 19 | <Panel halfSize={false} id="invite"> |
| 20 | <Title>Invite</Title> |
| 21 | <Divider /> |
| 22 | <CardRow> |
| 23 | <Card |
| 24 | wave="hooky" |
| 25 | icon="bots/hooky/circle" |
| 26 | buttonText={"000000"} gradient={["424242", "8D8D8D"]} |
pineafan | ff3d452 | 2022-05-06 19:51:02 +0100 | [diff] [blame] | 27 | title="Hooky" |
pineafan | e0283a8 | 2022-02-13 10:05:56 +0000 | [diff] [blame] | 28 | subtext="Invite Hooky to your server" |
| 29 | buttons={[ |
| 30 | {color: "EDC575", link: "https://discord.com/oauth2/authorize?client_id=752188923505279037&scope=bot&permissions=536882176", text: "Invite"} |
| 31 | ]} |
pineafan | ff3d452 | 2022-05-06 19:51:02 +0100 | [diff] [blame] | 32 | url="https://discord.com/oauth2/authorize?client_id=752188923505279037&scope=bot&permissions=536882176" |
pineafan | e0283a8 | 2022-02-13 10:05:56 +0000 | [diff] [blame] | 33 | /> |
| 34 | </CardRow> |
| 35 | </Panel> |
| 36 | </AutoLayout> |
pineafan | 71cf312 | 2021-09-04 21:54:44 +0100 | [diff] [blame] | 37 | </> |
| 38 | ) |
| 39 | } |