blob: c8a9b0802e32f75d00b5b9122d97fd4d4401fb87 [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';
4import Link from 'next/link';
5
6
7export default function Home() {
8 return (
9 <>
10 <Header
11 name="Privacy"
12 subtext="Privacy is a right - Here's how we handle it"
13 gradient={["71AFE5", "6576CC"]}
14 wave="web/waves/header/clicksforms"
15 buttons={[]}
16 />
17 <AutoLayout>
18 <Panel halfSize={true}>
19 <Title>Transparency</Title>
20 <Text>Everything we store about you and your Discord servers will be listed.</Text>
21 <List colour={"6576CC"}>
22 <ListItem><Link href="https://clicksminuteper.github.io/policies/rsm">RSM</Link></ListItem>
23 <ListItem><Link href="https://clicksminuteper.github.io/policies/clicksforms">ClicksForms</Link></ListItem>
24 <ListItem>GPS does not store any information</ListItem>
25 </List>
26 <Text>Have any questions or concerns? <Link href="/support">Let us know</Link> and we can investigate if you believe there are any mistakes</Text>
27 </Panel>
28 <Panel halfSize={true}>
29 <Title>Security</Title>
30 <Text>We will do everything we can to protect user data, including high security. You can <Link href="/support">message us</Link> if you would like to learn more about how we do this</Text>
31 </Panel>
32 </AutoLayout>
33 </>
34 )
35}