blob: db621c57993a8e8458a544cb68c21b15481540f1 [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
6export default function Home() {
7 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={[]}
15 />
16 <AutoLayout>
17 <Panel halfSize={true}>
18 <Title>Transparency</Title>
19 <Text>Everything we store about you and your Discord servers will be listed.</Text>
20 <List colour={"6576CC"}>
pineafan3b0852d2022-05-06 20:39:59 +010021 <ListItem><a href="https://clicksminuteper.github.io/policies/rsm">RSM</a></ListItem>
22 <ListItem><a href="https://clicksminuteper.github.io/policies/clicksforms">ClicksForms</a></ListItem>
pineafanfd93e6e2022-05-06 20:30:09 +010023 <ListItem>GPS does not store any information</ListItem>
24 </List>
pineafan3b0852d2022-05-06 20:39:59 +010025 <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 +010026 </Panel>
27 <Panel halfSize={true}>
28 <Title>Security</Title>
pineafan3b0852d2022-05-06 20:39:59 +010029 <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 +010030 </Panel>
31 </AutoLayout>
32 </>
33 )
34}