Samuel Shuert | 8aac601 | 2021-09-02 13:21:30 -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' |
| 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 | |
| 10 | export default function Home() { |
| 11 | return ( |
| 12 | <> |
| 13 | <Header |
| 14 | name="ClicksForms" |
| 15 | subtext="Custom forms on Discord" |
| 16 | gradient={["71AFE5", "6576CC"]} |
| 17 | wave="CF" |
| 18 | buttons={[ |
| 19 | {color: "6576CC", buttonText: "FFFFFF", link: "#features", text: "Features"}, |
| 20 | {color: "6576CC", buttonText: "FFFFFF", link: "#commands", text: "Commands"}, |
| 21 | {color: "775EBF", buttonText: "FFFFFF", link: "#invite", text: "Invite"} |
| 22 | ]} |
| 23 | hideArrow={true} |
| 24 | /> |
| 25 | <AutoSpacing |
| 26 | elements={[ |
| 27 | <SectionHeading title="Features" id="features"/>, |
| 28 | <SectionHeading title="Commands" id="commands"/>, |
| 29 | <SectionHeading title="Invite" id="invite"/> |
| 30 | ]}/> |
| 31 | </> |
| 32 | ) |
| 33 | } |