Files
pedestrian-simulator/frontend/privacy.html
Steven Polley 24ecddd034
All checks were successful
pedestrian-simulator / build (push) Successful in 53s
initial commit
2026-01-11 17:16:59 -07:00

170 lines
5.5 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy - Pedestrian Simulator</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<style>
:root {
--primary: #6366f1;
--bg-dark: #0f172a;
--bg-card: #1e293b;
--text-primary: #f1f5f9;
--text-secondary: #cbd5e1;
--border: #334155;
}
body {
font-family: 'Inter', sans-serif;
background-color: var(--bg-dark);
color: var(--text-primary);
line-height: 1.6;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
}
.container {
max-width: 800px;
padding: 4rem 2rem;
}
header {
margin-bottom: 3rem;
text-align: center;
}
h1 {
font-size: 2.5rem;
margin-bottom: 0.5rem;
background: linear-gradient(135deg, var(--primary), #8b5cf6);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
.back-link {
color: var(--primary);
text-decoration: none;
font-weight: 500;
display: inline-block;
margin-bottom: 2rem;
}
.back-link:hover {
text-decoration: underline;
}
section {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: 12px;
padding: 2rem;
margin-bottom: 2rem;
}
h2 {
color: var(--primary);
margin-top: 0;
font-size: 1.5rem;
}
p {
color: var(--text-secondary);
}
ul {
color: var(--text-secondary);
padding-left: 1.5rem;
}
li {
margin-bottom: 0.5rem;
}
footer {
text-align: center;
color: var(--text-secondary);
font-size: 0.9rem;
margin-top: 4rem;
}
</style>
</head>
<body>
<div class="container">
<a href="/" class="back-link">← Back to App</a>
<header>
<h1>Privacy Policy</h1>
<p>Effective Date: January 11, 2026</p>
</header>
<section>
<h2>Introduction</h2>
<p>Welcome to Pedestrian Simulator. We are committed to protecting your privacy and providing a transparent
experience. This policy explains how we handle your data.</p>
</section>
<section>
<h2>Information We Collect</h2>
<p>To provide the experience of a walking simulator synchronized with your fitness tracker, we collect the
following information from your Fitbit account:</p>
<ul>
<li><strong>Profile Information:</strong> Your display name and avatar, used to personalize your
interface.</li>
<li><strong>Activity Data:</strong> Your daily step counts, which are used to determine your position
along your walking routes.</li>
<li><strong>KML Files:</strong> Any route files you choose to upload to the service.</li>
</ul>
</section>
<section>
<h2>How We Use Your Data</h2>
<p>Your data is used exclusively to facilitate the core functions of the application:</p>
<ul>
<li>Calculating progress along your selected routes.</li>
<li>Saving your trip state so you can resume where you left off.</li>
<li>Displaying your identity in the user menu.</li>
</ul>
</section>
<section>
<h2>No Third-Party Sharing</h2>
<p><strong>We do not share, sell, or trade your personal information with any third parties.</strong> All
data collected is stored securely on our server and is used ONLY for the operation of Pedestrian
Simulator.</p>
</section>
<section>
<h2>KML File Privacy</h2>
<p>By default, every KML file you upload is <strong>private</strong>. Only you can see it and use it for
your trips.</p>
<p>You have the option to make a file <strong>public</strong>. This is strictly an opt-in process. When a
file is public:</p>
<ul>
<li>Other users can see the route name and your display name.</li>
<li>Other users can use the route for their own trips.</li>
<li>Other users can vote on the quality of the route.</li>
</ul>
<p>You can toggle a file back to private or delete it at any time.</p>
</section>
<section>
<h2>Data Retention</h2>
<p>We retain your data as long as your account is active. You can delete your uploaded routes at any time.
If you wish to have all your user data removed from our systems, please contact the administrator.</p>
</section>
<footer>
&copy; 2026 Pedestrian Simulator. Built with privacy in mind.
</footer>
</div>
</body>
</html>