pineafan | fd93e6e | 2022-05-06 20:30:09 +0100 | [diff] [blame] | 1 | import Header from '../Components/Header' |
| 2 | import { AutoLayout, Panel, Title, Subtitle, Text, Divider } from '../Components/Panels'; |
| 3 | import { List, ListItem, Code } from '../Components/Texttools'; |
pineafan | fd93e6e | 2022-05-06 20:30:09 +0100 | [diff] [blame] | 4 | |
| 5 | |
PineaFan | a465f35 | 2023-02-05 16:45:01 +0000 | [diff] [blame] | 6 | export default function Home(props) { |
pineafan | fd93e6e | 2022-05-06 20:30:09 +0100 | [diff] [blame] | 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={[]} |
PineaFan | a465f35 | 2023-02-05 16:45:01 +0000 | [diff] [blame] | 15 | season={props.season} |
pineafan | fd93e6e | 2022-05-06 20:30:09 +0100 | [diff] [blame] | 16 | /> |
| 17 | <AutoLayout> |
| 18 | <Panel halfSize={true}> |
| 19 | <Title>Transparency</Title> |
pineafan | 83152e2 | 2022-06-13 17:52:55 +0100 | [diff] [blame] | 20 | <Text>Everything we store about you and your Discord will be listed.</Text> |
pineafan | fd93e6e | 2022-05-06 20:30:09 +0100 | [diff] [blame] | 21 | <List colour={"6576CC"}> |
PineaFan | 4141862 | 2023-10-14 21:36:48 +0100 | [diff] [blame^] | 22 | <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> |
pineafan | fd93e6e | 2022-05-06 20:30:09 +0100 | [diff] [blame] | 24 | <ListItem>GPS does not store any information</ListItem> |
| 25 | </List> |
pineafan | 3b0852d | 2022-05-06 20:39:59 +0100 | [diff] [blame] | 26 | <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> |
pineafan | fd93e6e | 2022-05-06 20:30:09 +0100 | [diff] [blame] | 27 | </Panel> |
| 28 | <Panel halfSize={true}> |
| 29 | <Title>Security</Title> |
pineafan | 3b0852d | 2022-05-06 20:39:59 +0100 | [diff] [blame] | 30 | <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> |
pineafan | fd93e6e | 2022-05-06 20:30:09 +0100 | [diff] [blame] | 31 | </Panel> |
| 32 | </AutoLayout> |
| 33 | </> |
| 34 | ) |
| 35 | } |