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 | |
PineaFan | a465f35 | 2023-02-05 16:45:01 +0000 | [diff] [blame] | 5 | export default function Home(props) { |
pineafan | 328a5b9 | 2021-09-12 20:58:37 +0100 | [diff] [blame] | 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={[]} |
PineaFan | a465f35 | 2023-02-05 16:45:01 +0000 | [diff] [blame] | 14 | season={props.season} |
pineafan | 328a5b9 | 2021-09-12 20:58:37 +0100 | [diff] [blame] | 15 | /> |
pineafan | e0283a8 | 2022-02-13 10:05:56 +0000 | [diff] [blame] | 16 | <AutoLayout> |
| 17 | <Panel halfSize={true}> |
| 18 | <Title>Email</Title> |
| 19 | <Divider /> |
pineafan | ff3d452 | 2022-05-06 19:51:02 +0100 | [diff] [blame] | 20 | <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] | 21 | </Panel> |
| 22 | <Panel halfSize={true}> |
| 23 | <Title>Discord</Title> |
| 24 | <Divider /> |
| 25 | <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> |
| 26 | <Text>Type <Code colour="71AFE5">m!mail</Code> in <Code colour="71AFE5">#ticketmaster</Code> to create a support ticket.</Text> |
| 27 | </Panel> |
| 28 | </AutoLayout> |
pineafan | 328a5b9 | 2021-09-12 20:58:37 +0100 | [diff] [blame] | 29 | </> |
| 30 | ) |
| 31 | } |