Skip to content

Commit 8a74438

Browse files
committed
Add generic privacy policy and terms pages
1 parent 388149c commit 8a74438

2 files changed

Lines changed: 203 additions & 0 deletions

File tree

privacy/index.html

Lines changed: 101 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,101 @@
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.0">
6+
<title>Privacy Policy — Commit 451</title>
7+
<meta name="description" content="Privacy Policy for Commit 451 apps and services.">
8+
<meta name="robots" content="index, follow">
9+
<meta name="theme-color" content="#60d4c5">
10+
<link rel="canonical" href="https://commit451.com/privacy">
11+
<link rel="icon" type="image/png" href="/favicon.png">
12+
<script src="https://cdn.tailwindcss.com"></script>
13+
<script>
14+
tailwind.config = {
15+
theme: {
16+
extend: {
17+
colors: {
18+
brand: { teal: '#60d4c5', red: '#e74c3c' },
19+
dark: { 950: '#030712', 900: '#111827', 800: '#1f2937', 700: '#374151' }
20+
}
21+
}
22+
}
23+
}
24+
</script>
25+
</head>
26+
<body class="bg-dark-950 text-gray-100 antialiased">
27+
<main class="mx-auto max-w-3xl px-6 py-16 sm:py-24">
28+
<a href="/" class="text-sm text-brand-teal hover:underline">← Back to home</a>
29+
<h1 class="mt-6 text-4xl font-bold tracking-tight text-white">Privacy Policy</h1>
30+
<p class="mt-3 text-sm text-gray-400">Last updated: March 11, 2026</p>
31+
32+
<div class="mt-10 space-y-8 text-gray-300 leading-relaxed">
33+
<section>
34+
<h2 class="text-xl font-semibold text-white">Overview</h2>
35+
<p class="mt-3">This Privacy Policy explains how Commit 451 LLC ("Commit 451", "we", "our", "us") collects, uses, and protects information when you use our apps, websites, and related services (collectively, the "Services").</p>
36+
</section>
37+
38+
<section>
39+
<h2 class="text-xl font-semibold text-white">Information We Collect</h2>
40+
<ul class="mt-3 list-disc space-y-2 pl-6">
41+
<li><strong>Account information:</strong> such as name, email address, and profile details when you create or connect an account.</li>
42+
<li><strong>Usage information:</strong> app interactions, feature usage, crash logs, diagnostics, and performance metrics.</li>
43+
<li><strong>Device and technical information:</strong> device type, OS version, app version, and identifiers needed to operate the Services.</li>
44+
<li><strong>Content you provide:</strong> data, messages, prompts, files, or other input you submit through the Services.</li>
45+
</ul>
46+
</section>
47+
48+
<section>
49+
<h2 class="text-xl font-semibold text-white">How We Use Information</h2>
50+
<ul class="mt-3 list-disc space-y-2 pl-6">
51+
<li>Provide, maintain, and improve the Services</li>
52+
<li>Authenticate users and secure accounts</li>
53+
<li>Process requests and deliver features</li>
54+
<li>Monitor reliability, prevent abuse, and troubleshoot issues</li>
55+
<li>Communicate service updates, support messages, and important notices</li>
56+
<li>Comply with legal obligations</li>
57+
</ul>
58+
</section>
59+
60+
<section>
61+
<h2 class="text-xl font-semibold text-white">Data Sharing</h2>
62+
<p class="mt-3">We do not sell your personal information. We may share limited data with trusted service providers that help us operate the Services (for example, hosting, analytics, authentication, and support tools), subject to contractual safeguards.</p>
63+
</section>
64+
65+
<section>
66+
<h2 class="text-xl font-semibold text-white">Data Retention</h2>
67+
<p class="mt-3">We retain information for as long as necessary to provide the Services, comply with legal obligations, resolve disputes, and enforce agreements. Retention periods vary based on the type of data and applicable law.</p>
68+
</section>
69+
70+
<section>
71+
<h2 class="text-xl font-semibold text-white">Your Choices and Rights</h2>
72+
<ul class="mt-3 list-disc space-y-2 pl-6">
73+
<li>Access, update, or delete account information where available</li>
74+
<li>Request deletion of your personal data, subject to legal and operational requirements</li>
75+
<li>Control certain permissions from your device settings (notifications, storage, etc.)</li>
76+
</ul>
77+
</section>
78+
79+
<section>
80+
<h2 class="text-xl font-semibold text-white">Security</h2>
81+
<p class="mt-3">We use reasonable technical and organizational safeguards to protect information. No system is perfectly secure, so we cannot guarantee absolute security.</p>
82+
</section>
83+
84+
<section>
85+
<h2 class="text-xl font-semibold text-white">Children's Privacy</h2>
86+
<p class="mt-3">Our Services are not directed to children under 13 (or the minimum age required by local law). If you believe a child provided personal information, contact us so we can take appropriate action.</p>
87+
</section>
88+
89+
<section>
90+
<h2 class="text-xl font-semibold text-white">Changes to This Policy</h2>
91+
<p class="mt-3">We may update this Privacy Policy from time to time. If we make material changes, we will update the "Last updated" date and provide notice when required.</p>
92+
</section>
93+
94+
<section>
95+
<h2 class="text-xl font-semibold text-white">Contact</h2>
96+
<p class="mt-3">Questions about this Privacy Policy? Contact us at <a class="text-brand-teal hover:underline" href="mailto:hello@commit451.com">hello@commit451.com</a>.</p>
97+
</section>
98+
</div>
99+
</main>
100+
</body>
101+
</html>

terms/index.html

Lines changed: 102 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,102 @@
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.0">
6+
<title>Terms of Service — Commit 451</title>
7+
<meta name="description" content="Terms of Service for Commit 451 apps and services.">
8+
<meta name="robots" content="index, follow">
9+
<meta name="theme-color" content="#60d4c5">
10+
<link rel="canonical" href="https://commit451.com/terms">
11+
<link rel="icon" type="image/png" href="/favicon.png">
12+
<script src="https://cdn.tailwindcss.com"></script>
13+
<script>
14+
tailwind.config = {
15+
theme: {
16+
extend: {
17+
colors: {
18+
brand: { teal: '#60d4c5', red: '#e74c3c' },
19+
dark: { 950: '#030712', 900: '#111827', 800: '#1f2937', 700: '#374151' }
20+
}
21+
}
22+
}
23+
}
24+
</script>
25+
</head>
26+
<body class="bg-dark-950 text-gray-100 antialiased">
27+
<main class="mx-auto max-w-3xl px-6 py-16 sm:py-24">
28+
<a href="/" class="text-sm text-brand-teal hover:underline">← Back to home</a>
29+
<h1 class="mt-6 text-4xl font-bold tracking-tight text-white">Terms of Service</h1>
30+
<p class="mt-3 text-sm text-gray-400">Last updated: March 11, 2026</p>
31+
32+
<div class="mt-10 space-y-8 text-gray-300 leading-relaxed">
33+
<section>
34+
<h2 class="text-xl font-semibold text-white">Agreement to Terms</h2>
35+
<p class="mt-3">By accessing or using Commit 451 LLC apps, websites, and related services (the "Services"), you agree to these Terms of Service. If you do not agree, do not use the Services.</p>
36+
</section>
37+
38+
<section>
39+
<h2 class="text-xl font-semibold text-white">Eligibility and Accounts</h2>
40+
<ul class="mt-3 list-disc space-y-2 pl-6">
41+
<li>You must be legally capable of entering into this agreement.</li>
42+
<li>You are responsible for safeguarding your account credentials.</li>
43+
<li>You are responsible for activity under your account.</li>
44+
<li>You must provide accurate information and keep it reasonably up to date.</li>
45+
</ul>
46+
</section>
47+
48+
<section>
49+
<h2 class="text-xl font-semibold text-white">Acceptable Use</h2>
50+
<p class="mt-3">You agree not to misuse the Services. Prohibited behavior includes:</p>
51+
<ul class="mt-3 list-disc space-y-2 pl-6">
52+
<li>Violating any applicable law or regulation</li>
53+
<li>Infringing intellectual property or privacy rights</li>
54+
<li>Attempting unauthorized access, interference, or disruption</li>
55+
<li>Using the Services to distribute malware, spam, or harmful content</li>
56+
<li>Abusing APIs or automated systems beyond reasonable limits</li>
57+
</ul>
58+
</section>
59+
60+
<section>
61+
<h2 class="text-xl font-semibold text-white">User Content</h2>
62+
<p class="mt-3">You retain ownership of content you submit. You grant us a limited license to host, process, and display that content as needed to operate and improve the Services.</p>
63+
</section>
64+
65+
<section>
66+
<h2 class="text-xl font-semibold text-white">Intellectual Property</h2>
67+
<p class="mt-3">The Services, including software, design, branding, and documentation, are owned by Commit 451 or its licensors and are protected by intellectual property laws. Except as expressly permitted, you may not copy, modify, distribute, or reverse engineer our Services.</p>
68+
</section>
69+
70+
<section>
71+
<h2 class="text-xl font-semibold text-white">Service Changes and Availability</h2>
72+
<p class="mt-3">We may modify, suspend, or discontinue any part of the Services at any time, with or without notice. We do not guarantee uninterrupted availability.</p>
73+
</section>
74+
75+
<section>
76+
<h2 class="text-xl font-semibold text-white">Termination</h2>
77+
<p class="mt-3">We may suspend or terminate access if you violate these Terms or if necessary to protect users, the Services, or legal compliance. You may stop using the Services at any time.</p>
78+
</section>
79+
80+
<section>
81+
<h2 class="text-xl font-semibold text-white">Disclaimers</h2>
82+
<p class="mt-3">The Services are provided "as is" and "as available" without warranties of any kind, express or implied, including merchantability, fitness for a particular purpose, and non-infringement, to the maximum extent permitted by law.</p>
83+
</section>
84+
85+
<section>
86+
<h2 class="text-xl font-semibold text-white">Limitation of Liability</h2>
87+
<p class="mt-3">To the fullest extent permitted by law, Commit 451 and its affiliates will not be liable for indirect, incidental, special, consequential, or punitive damages, or any loss of data, profits, or business arising from your use of the Services.</p>
88+
</section>
89+
90+
<section>
91+
<h2 class="text-xl font-semibold text-white">Changes to These Terms</h2>
92+
<p class="mt-3">We may update these Terms periodically. Continued use of the Services after updates means you accept the revised Terms.</p>
93+
</section>
94+
95+
<section>
96+
<h2 class="text-xl font-semibold text-white">Contact</h2>
97+
<p class="mt-3">Questions about these Terms? Contact us at <a class="text-brand-teal hover:underline" href="mailto:hello@commit451.com">hello@commit451.com</a>.</p>
98+
</section>
99+
</div>
100+
</main>
101+
</body>
102+
</html>

0 commit comments

Comments
 (0)