Skip to content

Commit 15f7c93

Browse files
authored
Create index.html
1 parent 46ad9ee commit 15f7c93

1 file changed

Lines changed: 73 additions & 0 deletions

File tree

website/privacy/index.html

Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<title>Privacy Policy | SubShell</title>
8+
<link rel="preconnect" href="https://fonts.googleapis.com">
9+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
10+
<link href="https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap" rel="stylesheet">
11+
</head>
12+
<style>
13+
body {
14+
font-family: "Inter", sans-serif;
15+
font-optical-sizing: auto;
16+
font-weight: 300;
17+
}
18+
19+
h1, h2 {
20+
font-weight: 500;
21+
color: #282828;
22+
}
23+
24+
a {
25+
color: #FFC733;
26+
}
27+
28+
p {
29+
color: #696969;
30+
}
31+
32+
hr {
33+
border: 0;
34+
border-top: 1px solid #e3e3e3;
35+
}
36+
37+
.heading {
38+
display: flex;
39+
justify-content: space-between;
40+
align-items: center;
41+
}
42+
43+
.title {
44+
display: flex;
45+
align-items: center;
46+
}
47+
48+
.holder {
49+
padding-left: 25%;
50+
padding-right: 25%;
51+
}
52+
53+
@media only screen and (max-width: 800px) {
54+
.holder {
55+
padding-left: 3%;
56+
padding-right: 3%;
57+
}
58+
}
59+
60+
</style>
61+
<body>
62+
<div class="holder">
63+
<div class="heading">
64+
<h1 class="title"><img src="./mac128.png" height="45px" width="45px" style="padding-right: 5px;">SubShell</h1>
65+
<a href="https://github.com/jackdevey/subshell">Contribute</a>
66+
</div>
67+
<hr style="margin-top: -5px;">
68+
<h2>Privacy Policy</h2>
69+
<p>SubShell collects no user data, at all. Everything that happens on the app stays on your device and cannot be accessed from anywhere else.</p>
70+
<p>There is physically no where to store any user data anyway, we have no servers or databases and have no intention to ever implement any.</p>
71+
</div>
72+
</body>
73+
</html>

0 commit comments

Comments
 (0)