Skip to content

Commit 60046f4

Browse files
added privacy policy
1 parent a7a1561 commit 60046f4

File tree

1 file changed

+97
-0
lines changed

1 file changed

+97
-0
lines changed

privacy-policy.html

Lines changed: 97 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,97 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
6+
<title>Privacy Policy</title>
7+
<meta name="description" content="Privacy Policy for this app. We do not collect or share personal data.">
8+
<meta property="og:title" content="Privacy Policy">
9+
<meta property="og:description" content="This app does not collect or share personal data.">
10+
<meta name="robots" content="index,follow">
11+
<style>
12+
:root {
13+
--bg: #ffffff;
14+
--fg: #111827;
15+
--muted: #4b5563;
16+
--card: #f9fafb;
17+
--accent: #2563eb;
18+
}
19+
* { box-sizing: border-box; }
20+
body {
21+
margin: 0;
22+
font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
23+
color: var(--fg);
24+
background: var(--bg);
25+
line-height: 1.6;
26+
}
27+
header, main, footer { max-width: 800px; margin: 0 auto; padding: 24px; }
28+
header { padding-top: 48px; }
29+
h1 { font-size: 2rem; margin: 0 0 8px; }
30+
.updated { color: var(--muted); font-size: 0.95rem; }
31+
section { background: var(--card); border-radius: 16px; padding: 20px; margin: 16px 0; }
32+
h2 { margin-top: 0; font-size: 1.25rem; }
33+
a { color: var(--accent); text-decoration: none; }
34+
a:hover { text-decoration: underline; }
35+
footer { color: var(--muted); padding-bottom: 48px; }
36+
code { background:#eef2ff; padding:2px 6px; border-radius:6px; }
37+
</style>
38+
<!-- Structured data -->
39+
<script type="application/ld+json">
40+
{
41+
"@context": "https://schema.org",
42+
"@type": "PrivacyPolicy",
43+
"name": "Privacy Policy",
44+
"inLanguage": "en",
45+
"dateModified": "2025-10-01",
46+
"description": "This app does not collect, store, or share personal data."
47+
}
48+
</script>
49+
</head>
50+
<body>
51+
<header>
52+
<h1>AstroSiege - Privacy Policy</h1>
53+
<p class="updated">Last updated: 2025-10-01</p>
54+
</header>
55+
56+
<main>
57+
<section>
58+
<p>We respect your privacy. This Privacy Policy explains how our application operates and what information (if any) is collected.</p>
59+
</section>
60+
61+
<section>
62+
<h2>Information We Collect</h2>
63+
<p><strong>We do not collect, store, or process any personal information</strong> from users of this application. The app runs locally on your device and does not transmit data to our servers.</p>
64+
</section>
65+
66+
<section>
67+
<h2>Data Sharing</h2>
68+
<p>We <strong>do not share any data</strong>—personal or non‑personal—with third parties, companies, or organizations.</p>
69+
</section>
70+
71+
<section>
72+
<h2>Permissions</h2>
73+
<p>The app only uses permissions that are strictly necessary for its core functionality. No permission is used to collect personal data.</p>
74+
</section>
75+
76+
<section>
77+
<h2>Children’s Privacy</h2>
78+
<p>This app is suitable for all ages. We do not knowingly collect data from children.</p>
79+
</section>
80+
81+
<section>
82+
<h2>Changes to This Policy</h2>
83+
<p>If our practices change or if required by platform policies, we may update this Privacy Policy. Updates will be reflected on this page with a new “Last updated” date.</p>
84+
</section>
85+
86+
<section>
87+
<h2>Contact Us</h2>
88+
<p>If you have any questions about this Privacy Policy, please contact us at
89+
<a href="mailto:astrogiegegame@gmail.com">astrogiegegame@gmail.com</a>.</p>
90+
</section>
91+
</main>
92+
93+
<footer>
94+
<p>&copy; 2025 All rights reserved.</p>
95+
</footer>
96+
</body>
97+
</html>

0 commit comments

Comments
 (0)