pineafan | a5ce910 | 2021-09-02 17:21:31 +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' |
Samuel Shuert | 604e31d | 2021-09-02 16:06:20 -0500 | [diff] [blame] | 5 | import TileRow from '../Components/TileRow' |
pineafan | a5ce910 | 2021-09-02 17:21:31 +0100 | [diff] [blame] | 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="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 | /> |
pineafan | aed3024 | 2021-09-04 09:33:40 +0100 | [diff] [blame^] | 25 | <AutoSpacing> |
| 26 | <SectionHeading title="Features" id="features"/> |
| 27 | <TileRow> |
| 28 | <img alt="Moderate images" src="/Features/RSM/Images.svg" /> |
| 29 | <img alt="Automate your server" src="/Features/RSM/Automate.svg" /> |
| 30 | <img alt="CAPTCHA verification" src="/Features/RSM/CAPTCHA.svg" /> |
| 31 | <img alt="Actively developed" src="/Features/RSM/Developed.svg" /> |
| 32 | <img alt="Advanced logging" src="/Features/RSM/Logging.svg" /> |
| 33 | <img alt="NSFW Moderation" src="/Features/RSM/NSFW.svg" /> |
| 34 | <img alt="Eaily punish users" src="/Features/RSM/Punish.svg" /> |
| 35 | <img alt="Stop raids quickly" src="/Features/RSM/Raids.svg" /> |
| 36 | <img alt="Track statistics" src="/Features/RSM/Statistics.svg" /> |
| 37 | <img alt="Custom tags" src="/Features/RSM/Tags.svg" /> |
| 38 | </TileRow> |
| 39 | <SectionHeading title="Commands" id="commands"/> |
pineafan | a5ce910 | 2021-09-02 17:21:31 +0100 | [diff] [blame] | 40 | <SectionHeading title="Invite" id="invite"/> |
pineafan | aed3024 | 2021-09-04 09:33:40 +0100 | [diff] [blame^] | 41 | </AutoSpacing> |
pineafan | a5ce910 | 2021-09-02 17:21:31 +0100 | [diff] [blame] | 42 | </> |
| 43 | ) |
| 44 | } |