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' |
pineafan | df39fd4 | 2021-09-04 16:05:27 +0100 | [diff] [blame] | 9 | import Paragraph from '../Components/Paragraph' |
Samuel Shuert | 8aac601 | 2021-09-02 13:21:30 -0500 | [diff] [blame] | 10 | |
| 11 | export default function Home() { |
| 12 | return ( |
| 13 | <> |
| 14 | <Header |
| 15 | name="Castaway" |
| 16 | subtext="Stranded on Discord" |
| 17 | gradient={["71AFE5", "78ECF2"]} |
pineafan | a841c76 | 2021-11-14 21:21:04 +0000 | [diff] [blame^] | 18 | wave="web/waves/header/castaway" |
Samuel Shuert | 8aac601 | 2021-09-02 13:21:30 -0500 | [diff] [blame] | 19 | buttons={[ |
pineafan | df39fd4 | 2021-09-04 16:05:27 +0100 | [diff] [blame] | 20 | {color: "78ECF2", buttonText: "000000", link: "#timeline", text: "Timeline"} |
Samuel Shuert | 8aac601 | 2021-09-02 13:21:30 -0500 | [diff] [blame] | 21 | ]} |
| 22 | hideArrow={true} |
| 23 | /> |
pineafan | aed3024 | 2021-09-04 09:33:40 +0100 | [diff] [blame] | 24 | <AutoSpacing> |
pineafan | df39fd4 | 2021-09-04 16:05:27 +0100 | [diff] [blame] | 25 | <SectionHeading id="timeline">Development Timeline</SectionHeading> |
| 26 | <Paragraph>Under construction</Paragraph> |
| 27 | </AutoSpacing> |
Samuel Shuert | 8aac601 | 2021-09-02 13:21:30 -0500 | [diff] [blame] | 28 | </> |
| 29 | ) |
| 30 | } |