Files
Sportstime/legal/privacy.html
Trey t 5d1e9a3f48 feat: add privacy policy and terms of service
- Add HTML files for hosting at 88oakapps.com/privacy and /terms
- Update SettingsView links to use 88oakapps.com domain
- Plain English, minimal legal documents for freemium app

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-11 11:00:03 -06:00

160 lines
6.4 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 - [App Name]</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
line-height: 1.6;
color: #333;
background: #fafafa;
padding: 20px;
}
.container {
max-width: 720px;
margin: 0 auto;
background: white;
padding: 40px;
border-radius: 12px;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
h1 {
font-size: 28px;
font-weight: 700;
margin-bottom: 8px;
color: #1a1a1a;
}
.last-updated {
color: #666;
font-size: 14px;
margin-bottom: 32px;
}
h2 {
font-size: 18px;
font-weight: 600;
margin-top: 32px;
margin-bottom: 12px;
color: #1a1a1a;
}
p {
margin-bottom: 16px;
color: #444;
}
ul {
margin-bottom: 16px;
padding-left: 24px;
}
li {
margin-bottom: 8px;
color: #444;
}
.contact {
margin-top: 40px;
padding-top: 24px;
border-top: 1px solid #eee;
}
a {
color: #0066cc;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
@media (max-width: 600px) {
.container {
padding: 24px;
}
h1 {
font-size: 24px;
}
}
</style>
</head>
<body>
<div class="container">
<h1>Privacy Policy</h1>
<p class="last-updated">Last updated: [Date]</p>
<p>88Oak LLC ("we", "us", "our") operates [App Name]. This policy explains what data we collect and how we use it.</p>
<h2>Information We Collect</h2>
<p><strong>Data You Provide:</strong></p>
<ul>
<li>Trip plans (destinations, dates, preferences)</li>
<li>Stadium visits you log (dates, photos, notes)</li>
<li>Your home location (if you choose to set one)</li>
<li>App preferences (favorite sports, travel settings)</li>
</ul>
<p><strong>Data Collected Automatically:</strong></p>
<ul>
<li>Location (only while using the app, for route planning and finding nearby stadiums)</li>
<li>Anonymous usage analytics (features used, planning preferences, achievement milestones) - this data cannot be linked to you personally</li>
</ul>
<p><strong>Data Synced via iCloud:</strong></p>
<p>Your trips, visits, and preferences sync through Apple's iCloud service using your Apple ID. We don't have access to your Apple ID or iCloud credentials.</p>
<h2>How We Use Your Data</h2>
<ul>
<li>To plan and optimize your sports road trips</li>
<li>To track your stadium visits and achievements</li>
<li>To sync your data across your devices via iCloud</li>
<li>To improve the app based on anonymous usage patterns</li>
</ul>
<p>We do not use your data for advertising or sell it to third parties.</p>
<h2>Data Sharing</h2>
<p>We don't share your personal data with third parties, with these exceptions:</p>
<ul>
<li><strong>Apple:</strong> Your data syncs via iCloud, governed by Apple's privacy policy</li>
<li><strong>Service Providers:</strong> We use Apple's CloudKit for data storage and Maps for route planning. These services process data on our behalf.</li>
<li><strong>Legal Requirements:</strong> We may disclose data if required by law or to protect our rights</li>
</ul>
<p>We do not sell your personal information.</p>
<h2>Data Storage & Security</h2>
<p>Your data is stored:</p>
<ul>
<li>On your device using Apple's secure storage</li>
<li>In iCloud (if signed in), protected by your Apple ID</li>
</ul>
<p>We don't operate our own servers that store your personal data. Anonymous analytics are stored securely in our iCloud database.</p>
<h2>Your Rights</h2>
<p>You can:</p>
<ul>
<li><strong>Access your data:</strong> View all your trips and visits in the app</li>
<li><strong>Delete your data:</strong> Delete individual trips/visits in the app, or delete the app to remove all local data</li>
<li><strong>Disable iCloud sync:</strong> Turn off [App Name] in your device's iCloud settings</li>
<li><strong>Disable location:</strong> Revoke location permission in Settings at any time (some features require location to function)</li>
</ul>
<p>For data deletion requests or questions, contact us at <a href="mailto:support@88oakapps.com">support@88oakapps.com</a></p>
<h2>California Residents</h2>
<p>If you're a California resident, you have the right to know what personal information we collect and request its deletion. We don't sell personal information. To exercise these rights, email <a href="mailto:support@88oakapps.com">support@88oakapps.com</a></p>
<h2>Age Requirements</h2>
<p>[App Name] is intended for users age 13 and older. We do not knowingly collect personal information from children under 13. If you believe a child under 13 has provided us data, please contact <a href="mailto:support@88oakapps.com">support@88oakapps.com</a> and we will delete it.</p>
<h2>Changes to This Policy</h2>
<p>We may update this policy from time to time. We'll notify you of significant changes by updating the "Last updated" date at the top. Continued use of the app after changes means you accept the updated policy.</p>
<div class="contact">
<h2>Contact Us</h2>
<p>Questions about this privacy policy? Contact us at:<br>
<a href="mailto:support@88oakapps.com">support@88oakapps.com</a></p>
<p>88Oak LLC<br>United States</p>
</div>
</div>
</body>
</html>