Permalink
Newer
100644
138 lines (136 sloc)
3.95 KB
1
import {
2
Accordion,
3
AccordionButton,
4
AccordionIcon,
5
AccordionItem,
6
AccordionPanel,
7
Box,
8
Container,
9
Heading,
10
Link,
11
Spacer,
12
VStack,
13
} from "@chakra-ui/react";
14
15
export function Page() {
16
return (
17
<Container
18
borderRadius="12px"
19
borderWidth="1px"
20
maxW="container.md"
21
mt="8vh"
22
>
23
<VStack w="100%" spacing={3}>
24
<Spacer />
25
<Heading alignSelf="start" pl="2.5%" size="md">
26
What do you need help with?
27
</Heading>
28
<Spacer />
29
<Accordion textAlign="left" w="100%">
30
<AccordionItem>
31
<h2>
32
<AccordionButton>
33
<Box as="span" flex="1" textAlign="left">
34
I want to report someone exploiting
35
</Box>
36
<AccordionIcon />
37
</AccordionButton>
38
</h2>
39
<AccordionPanel>
40
To report a player,{" "}
41
<Link color="#646cff" href="/report">
42
head to our report page.
43
</Link>
44
</AccordionPanel>
45
</AccordionItem>
46
<AccordionItem>
47
<h2>
48
<AccordionButton>
49
<Box as="span" flex="1" textAlign="left">
50
I want a data rollback or transfer
51
</Box>
52
<AccordionIcon />
53
</AccordionButton>
54
</h2>
55
<AccordionPanel>
56
Please join our{" "}
57
<Link
58
color="#646cff"
59
href="https://discord.com/invite/carcrushers"
60
>
61
Discord server
62
</Link>{" "}
63
and contact ModMail.
64
</AccordionPanel>
65
</AccordionItem>
66
<AccordionItem>
67
<h2>
68
<AccordionButton>
69
<Box as="span" flex="1" textAlign="left">
70
I want to appeal my ban
71
</Box>
72
<AccordionIcon />
73
</AccordionButton>
74
</h2>
75
<AccordionPanel>
76
If you were banned from our Discord server,{" "}
77
<Link color="#646cff" href="/appeals">
78
use this form
79
</Link>
80
. If you were banned from the game,{" "}
81
<Link
82
color="#646cff"
83
href="https://www.roblox.com/games/527921900/Car-Crushers-2-Appeals"
84
>
85
fill out the form here
86
</Link>
87
.
88
</AccordionPanel>
89
</AccordionItem>
90
<AccordionItem>
91
<h2>
92
<AccordionButton>
93
<Box as="span" flex="1" textAlign="left">
94
I want to apply for a staff position
95
</Box>
96
<AccordionIcon />
97
</AccordionButton>
98
</h2>
99
<AccordionPanel>
100
Most staff position openings will be announced in our{" "}
101
<Link
102
color="#646cff"
103
href="https://discord.com/invite/carcrushers"
104
>
105
Discord server
106
</Link>
107
. Forum mod openings are generally announced on the forum.
108
</AccordionPanel>
109
</AccordionItem>
110
<AccordionItem>
111
<h2>
112
<AccordionButton>
113
<Box as="span" flex="1" textAlign="left">
114
My problem is not listed
115
</Box>
116
<AccordionIcon />
117
</AccordionButton>
118
</h2>
119
<AccordionPanel>
120
Join our{" "}
121
<Link
122
color="#646cff"
123
href="https://discord.com/invite/carcrushers"
124
>
125
Discord server
126
</Link>{" "}
127
and open a ticket with ModMail.
128
</AccordionPanel>
129
</AccordionItem>
130
</Accordion>
131
<Spacer />
132
<Spacer />
133
</VStack>
134
</Container>
135
);
136
}
137
138
export const title = "Support - Car Crushers";