pineafan | 328a5b9 | 2021-09-12 20:58:37 +0100 | [diff] [blame] | 1 | import Header from '../Components/Header' |
pineafan | e0283a8 | 2022-02-13 10:05:56 +0000 | [diff] [blame] | 2 | import { AutoLayout, Panel, Title, Subtitle, Text, Divider } from '../Components/Panels'; |
| 3 | import { List, ListItem, Code } from '../Components/Texttools'; |
pineafan | 328a5b9 | 2021-09-12 20:58:37 +0100 | [diff] [blame] | 4 | |
| 5 | export default function Home() { |
| 6 | return ( |
| 7 | <> |
| 8 | <Header |
| 9 | name="Support" |
| 10 | subtext="Get support for ClicksMinutePer products" |
| 11 | gradient={["71AFE5", "6576CC"]} |
pineafan | a841c76 | 2021-11-14 21:21:04 +0000 | [diff] [blame] | 12 | wave="web/waves/header/clicksforms" |
pineafan | 328a5b9 | 2021-09-12 20:58:37 +0100 | [diff] [blame] | 13 | buttons={[]} |
| 14 | /> |
pineafan | e0283a8 | 2022-02-13 10:05:56 +0000 | [diff] [blame] | 15 | <AutoLayout> |
| 16 | <Panel halfSize={true}> |
| 17 | <Title>Email</Title> |
| 18 | <Divider /> |
pineafan | 3b0852d | 2022-05-06 20:39:59 +0100 | [diff] [blame^] | 19 | <Text>Send us an email at <a href="mailto:support@clicks.codes">support@clicks.codes</a> and we will get back to you as quick as possible.</Text> |
pineafan | e0283a8 | 2022-02-13 10:05:56 +0000 | [diff] [blame] | 20 | </Panel> |
| 21 | <Panel halfSize={true}> |
| 22 | <Title>Discord</Title> |
| 23 | <Divider /> |
pineafan | 3b0852d | 2022-05-06 20:39:59 +0100 | [diff] [blame^] | 24 | <Text>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.</Text> |
pineafan | e0283a8 | 2022-02-13 10:05:56 +0000 | [diff] [blame] | 25 | <Text>Type <Code colour="71AFE5">m!mail</Code> in <Code colour="71AFE5">#ticketmaster</Code> to create a support ticket.</Text> |
| 26 | </Panel> |
| 27 | </AutoLayout> |
pineafan | 328a5b9 | 2021-09-12 20:58:37 +0100 | [diff] [blame] | 28 | </> |
| 29 | ) |
| 30 | } |