pineafan | 71cf312 | 2021-09-04 21:54:44 +0100 | [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' |
| 5 | import CardRow from '../Components/CardRow' |
| 6 | import Header from '../Components/Header' |
| 7 | import AutoSpacing from '../Components/AutoSpacing' |
| 8 | import SectionHeading from '../Components/SectionHeading' |
| 9 | import Paragraph from '../Components/Paragraph' |
| 10 | |
| 11 | export default function Home() { |
| 12 | return ( |
| 13 | <> |
| 14 | <Header |
| 15 | name="Hooky" |
| 16 | subtext="Webhook protection for Discord" |
| 17 | gradient={["424242", "8D8D8D"]} |
pineafan | a841c76 | 2021-11-14 21:21:04 +0000 | [diff] [blame] | 18 | wave="web/waves/header/hooky" |
pineafan | 71cf312 | 2021-09-04 21:54:44 +0100 | [diff] [blame] | 19 | buttons={[ |
| 20 | {color: "EDC575", buttonText: "000000", link: "#invite", text: "Invite"} |
| 21 | ]} |
| 22 | hideArrow={true} |
| 23 | /> |
| 24 | <AutoSpacing> |
| 25 | <SectionHeading id="invite">Invite</SectionHeading> |
| 26 | <CardRow> |
| 27 | <Card |
pineafan | a841c76 | 2021-11-14 21:21:04 +0000 | [diff] [blame] | 28 | wave="hooky" |
pineafan | f97734b | 2021-11-23 21:11:00 +0000 | [diff] [blame^] | 29 | icon="bots/hooky/circle" |
pineafan | 71cf312 | 2021-09-04 21:54:44 +0100 | [diff] [blame] | 30 | buttonText={"000000"} gradient={["424242", "8D8D8D"]} |
| 31 | title="Invite" |
| 32 | subtext="Invite Hooky to your server" |
| 33 | buttons={[ |
Pineapplefan | 1848fad | 2021-10-24 12:39:39 +0100 | [diff] [blame] | 34 | {color: "EDC575", link: "https://discord.com/oauth2/authorize?client_id=752188923505279037&scope=bot&permissions=536882176", text: "Invite"} |
pineafan | 71cf312 | 2021-09-04 21:54:44 +0100 | [diff] [blame] | 35 | ]} |
| 36 | /> |
| 37 | </CardRow> |
| 38 | </AutoSpacing> |
| 39 | </> |
| 40 | ) |
| 41 | } |