Files
cartsnitch.com/docs/privacy.html
T
Markdown Martha 109eb2de44 feat: build complete CartSnitch marketing site with landing page, docs, and about
- Landing page with hero section, features, and CTA
- Help center with getting started guide and FAQ
- Privacy policy and terms of service pages
- About page with company mission and values
- Responsive CSS styling for mobile-first experience
- GitHub Actions workflow for automatic deployment
- .gitignore for common files

All content is shopper-focused and emphasizes savings benefits.
Responsive design optimized for mobile grocery shopping context.

Co-Authored-By: Paperclip <noreply@paperclip.ing>
2026-04-14 11:12:49 +00:00

85 lines
3.3 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy CartSnitch</title>
<link rel="stylesheet" href="/css/style.css">
</head>
<body>
<header>
<nav>
<a href="/" class="logo">🛒 CartSnitch</a>
<ul class="nav-links">
<li><a href="/">Home</a></li>
<li><a href="/docs/">Help & Guides</a></li>
<li><a href="/about/">About</a></li>
</ul>
</nav>
</header>
<main>
<div class="container">
<nav class="breadcrumb">
<a href="/">Home</a> / Privacy Policy
</nav>
<div class="doc-content">
<h2>Privacy Policy</h2>
<p><em>Last updated: April 14, 2026</em></p>
<h3>1. Introduction</h3>
<p>CartSnitch ("we," "us," "our") is committed to protecting your privacy. This Privacy Policy explains how we collect, use, disclose, and safeguard your information when you use our mobile application and related services.</p>
<h3>2. Information We Collect</h3>
<p>CartSnitch collects limited personal information necessary to provide our service:</p>
<ul style="margin-left: 2rem;">
<li>Account information (email, phone number)</li>
<li>Store preferences you select</li>
<li>Device information and app usage analytics</li>
<li>Crash reports to improve app stability</li>
</ul>
<h3>3. How We Use Your Information</h3>
<p>We use collected information to:</p>
<ul style="margin-left: 2rem;">
<li>Provide and improve CartSnitch</li>
<li>Send deal alerts matching your interests</li>
<li>Fix bugs and optimize performance</li>
<li>Understand usage patterns (anonymized)</li>
</ul>
<h3>4. Data Security</h3>
<p>CartSnitch uses industry-standard encryption and security practices to protect your data. However, no method of transmission over the internet is 100% secure.</p>
<h3>5. Third-Party Sharing</h3>
<p>CartSnitch never sells your personal data. We share data only with:</p>
<ul style="margin-left: 2rem;">
<li>Grocery retailers to fetch real-time deals</li>
<li>Service providers (analytics, hosting) under strict confidentiality agreements</li>
<li>Legal authorities when required by law</li>
</ul>
<h3>6. Your Rights</h3>
<p>You have the right to access, update, or delete your personal information. Contact us at support@cartsnitch.com to exercise these rights.</p>
<h3>7. Contact Us</h3>
<p>Questions about this Privacy Policy? Email us at <a href="mailto:support@cartsnitch.com">support@cartsnitch.com</a>.</p>
</div>
</div>
</main>
<footer>
<div class="container">
<p>CartSnitch Save money on groceries, one trip at a time</p>
<p style="margin-top: 1rem; font-size: 0.875rem;">
<a href="/docs/privacy/">Privacy Policy</a> ·
<a href="/docs/terms/">Terms of Service</a> ·
<a href="mailto:support@cartsnitch.com">Contact Support</a>
</p>
<p style="margin-top: 1.5rem; color: #9ca3af;">Made with ❤️ for shoppers who value every dollar.</p>
</div>
</footer>
</body>
</html>