pineafan | 328a5b9 | 2021-09-12 20:58:37 +0100 | [diff] [blame^] | 1 | import Card from '../Components/Card' |
| 2 | import TileRow from '../Components/TileRow' |
| 3 | import Header from '../Components/Header' |
| 4 | import AutoSpacing from '../Components/AutoSpacing' |
| 5 | import Paragraph from '../Components/Paragraph' |
| 6 | import SectionHeading from '../Components/SectionHeading' |
| 7 | |
| 8 | export default function Home() { |
| 9 | return ( |
| 10 | <> |
| 11 | <Header |
| 12 | name="Support" |
| 13 | subtext="Get support for ClicksMinutePer products" |
| 14 | gradient={["71AFE5", "6576CC"]} |
| 15 | wave="CF" |
| 16 | buttons={[]} |
| 17 | /> |
| 18 | <AutoSpacing> |
| 19 | <SectionHeading id="start">Discord</SectionHeading> |
| 20 | <Paragraph>Support can be found by joining our <a href="https://discord.gg/bPaNnxe">Discord server</a>.</Paragraph> |
| 21 | </AutoSpacing> |
| 22 | </> |
| 23 | ) |
| 24 | } |