blob: 4938569fe67caf217aecb9d269531063436bc36f [file] [log] [blame]
pineafana5ce9102021-09-02 17:21:31 +01001import Head from 'next/head'
2import Image from 'next/image'
3import styles from '../styles/Home.module.css'
4import Card from '../Components/Card'
Samuel Shuert604e31d2021-09-02 16:06:20 -05005import TileRow from '../Components/TileRow'
pineafana5ce9102021-09-02 17:21:31 +01006import 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="RSM"
15 subtext="Moderation Redefined"
16 gradient={["F27878", "D96B6B"]}
17 wave="RM"
18 buttons={[
19 {color: "424242", buttonText: "FFFFFF", link: "#features", text: "Features"},
20 {color: "424242", buttonText: "FFFFFF", link: "#commands", text: "Commands"},
21 {color: "F27878", buttonText: "FFFFFF", link: "#invite", text: "Invite"}
22 ]}
23 hideArrow={true}
24 />
25 <AutoSpacing
26 elements={[
27 <SectionHeading title="Features" id="features"/>,
Samuel Shuert604e31d2021-09-02 16:06:20 -050028 <TileRow tiles={[
29 <img style={{height: "300px", width: "auto"}} src="/Features/RSM/Images.svg" />,
30 <img style={{height: "300px", width: "auto"}} src="/Features/RSM/Automate.svg" />,
31 <img style={{height: "300px", width: "auto"}} src="/Features/RSM/CAPTCHA.svg" />,
32 <img style={{height: "300px", width: "auto"}} src="/Features/RSM/Developed.svg" />,
33 <img style={{height: "300px", width: "auto"}} src="/Features/RSM/Logging.svg" />,
34 <img style={{height: "300px", width: "auto"}} src="/Features/RSM/NSFW.svg" />,
35 <img style={{height: "300px", width: "auto"}} src="/Features/RSM/Punish.svg" />,
36 <img style={{height: "300px", width: "auto"}} src="/Features/RSM/Raids.svg" />,
37 <img style={{height: "300px", width: "auto"}} src="/Features/RSM/Statistics.svg" />,
38 <img style={{height: "300px", width: "auto"}} src="/Features/RSM/Tags.svg" />
Samuel Shuert52f37772021-09-02 12:29:40 -050039 ]} />,
pineafana5ce9102021-09-02 17:21:31 +010040 <SectionHeading title="Commands" id="commands"/>,
41 <SectionHeading title="Invite" id="invite"/>
42 ]}/>
43 </>
44 )
45}