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"]} |
| 18 | wave="CA" |
| 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 | 0622413 | 2021-09-04 21:56:35 +0100 | [diff] [blame] | 28 | wave="HY" |
pineafan | 71cf312 | 2021-09-04 21:54:44 +0100 | [diff] [blame] | 29 | buttonText={"000000"} gradient={["424242", "8D8D8D"]} |
| 30 | title="Invite" |
| 31 | subtext="Invite Hooky to your server" |
| 32 | buttons={[ |
Pineapplefan | 1848fad | 2021-10-24 12:39:39 +0100 | [diff] [blame^] | 33 | {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] | 34 | ]} |
| 35 | /> |
| 36 | </CardRow> |
| 37 | </AutoSpacing> |
| 38 | </> |
| 39 | ) |
| 40 | } |