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"]} |
pineafan | a841c76 | 2021-11-14 21:21:04 +0000 | [diff] [blame^] | 15 | wave="web/waves/header/clicksforms" |
pineafan | 328a5b9 | 2021-09-12 20:58:37 +0100 | [diff] [blame] | 16 | buttons={[]} |
| 17 | /> |
| 18 | <AutoSpacing> |
Pineapplefan | b6621ba | 2021-09-12 21:26:54 +0100 | [diff] [blame] | 19 | <SectionHeading id="start">Email</SectionHeading> |
| 20 | <Paragraph>Send us an email at <a href="mailto:support@clicksminuteper.net">support@clicksminuteper.net</a> and we will get back to you as quick as possible.</Paragraph> |
pineafan | 328a5b9 | 2021-09-12 20:58:37 +0100 | [diff] [blame] | 21 | <SectionHeading id="start">Discord</SectionHeading> |
Pineapplefan | b6621ba | 2021-09-12 21:26:54 +0100 | [diff] [blame] | 22 | <Paragraph>For a faster response, you can join our <a href="https://discord.gg/bPaNnxe">Discord server</a> where our staff members can help you with any questions.</Paragraph> |
| 23 | <Paragraph>Type <code>m!mail</code> in <code>#ticketmaster</code> to create a support ticket.</Paragraph> |
pineafan | 328a5b9 | 2021-09-12 20:58:37 +0100 | [diff] [blame] | 24 | </AutoSpacing> |
| 25 | </> |
| 26 | ) |
| 27 | } |