blob: 57053681c504cb247528cf7b756dabc0c01326fb [file] [log] [blame]
pineafanfd93e6e2022-05-06 20:30:09 +01001import Header from '../Components/Header'
2import { AutoLayout, Panel, Title, Subtitle, Text, Divider } from '../Components/Panels';
3import { List, ListItem, Code } from '../Components/Texttools';
pineafanfd93e6e2022-05-06 20:30:09 +01004
5
PineaFana465f352023-02-05 16:45:01 +00006export default function Home(props) {
pineafanfd93e6e2022-05-06 20:30:09 +01007 return (
8 <>
9 <Header
10 name="Privacy"
11 subtext="Privacy is a right - Here's how we handle it"
12 gradient={["71AFE5", "6576CC"]}
13 wave="web/waves/header/clicksforms"
14 buttons={[]}
PineaFana465f352023-02-05 16:45:01 +000015 season={props.season}
pineafanfd93e6e2022-05-06 20:30:09 +010016 />
17 <AutoLayout>
18 <Panel halfSize={true}>
19 <Title>Transparency</Title>
pineafan83152e22022-06-13 17:52:55 +010020 <Text>Everything we store about you and your Discord will be listed.</Text>
pineafanfd93e6e2022-05-06 20:30:09 +010021 <List colour={"6576CC"}>
PineaFan41418622023-10-14 21:36:48 +010022 <ListItem><a href="https://clickscodes.github.io/policies/rsm">RSM</a></ListItem>
23 <ListItem><a href="https://clickscodes.github.io/policies/clicksforms">ClicksForms</a></ListItem>
pineafanfd93e6e2022-05-06 20:30:09 +010024 <ListItem>GPS does not store any information</ListItem>
25 </List>
pineafan3b0852d2022-05-06 20:39:59 +010026 <Text>Have any questions or concerns? <a href="/support">Let us know</a> and we can investigate if you believe there are any mistakes</Text>
pineafanfd93e6e2022-05-06 20:30:09 +010027 </Panel>
28 <Panel halfSize={true}>
29 <Title>Security</Title>
pineafan3b0852d2022-05-06 20:39:59 +010030 <Text>We will do everything we can to protect user data, including high security. You can <a href="/support">message us</a> if you would like to learn more about how we do this</Text>
pineafanfd93e6e2022-05-06 20:30:09 +010031 </Panel>
32 </AutoLayout>
33 </>
34 )
35}