blob: 3249e0482c132b6541d494696d637d6c3f392280 [file] [log] [blame]
Samuel Shuert8aac6012021-09-02 13:21:30 -05001import Head from 'next/head'
2import Image from 'next/image'
3import styles from '../styles/Home.module.css'
4import Card from '../Components/Card'
5import CardRow from '../Components/CardRow'
6import Header from '../Components/Header'
7import AutoSpacing from '../Components/AutoSpacing'
8import SectionHeading from '../Components/SectionHeading'
9
10export default function Home() {
11 return (
12 <>
13 <Header
14 name="GPS"
15 subtext="Cards Against Humanity on Discord"
16 gradient={["78ECF2", "71AFE5"]}
17 wave="GS"
18 buttons={[
19 {color: "71AFE5", buttonText: "FFFFFF", link: "#features", text: "Features"},
20 {color: "71AFE5", buttonText: "FFFFFF", link: "#commands", text: "Commands"},
21 {color: "6576CC", buttonText: "FFFFFF", link: "#invite", text: "Invite"}
22 ]}
23 hideArrow={true}
24 />
pineafanaed30242021-09-04 09:33:40 +010025 <AutoSpacing>
Samuel Shuert8aac6012021-09-02 13:21:30 -050026 <SectionHeading title="Features" id="features"/>,
27 <SectionHeading title="Commands" id="commands"/>,
28 <SectionHeading title="Invite" id="invite"/>
pineafanaed30242021-09-04 09:33:40 +010029 </AutoSpacing>s
Samuel Shuert8aac6012021-09-02 13:21:30 -050030 </>
31 )
32}