109eb2de44
- 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>
74 lines
2.7 KiB
HTML
74 lines
2.7 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<title>Terms of Service – 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> / Terms of Service
|
||
</nav>
|
||
|
||
<div class="doc-content">
|
||
<h2>Terms of Service</h2>
|
||
<p><em>Last updated: April 14, 2026</em></p>
|
||
|
||
<h3>1. Agreement to Terms</h3>
|
||
<p>By using CartSnitch, you agree to comply with these Terms of Service. If you do not agree, do not use CartSnitch.</p>
|
||
|
||
<h3>2. License</h3>
|
||
<p>CartSnitch grants you a limited, non-exclusive license to use our app for personal, non-commercial purposes.</p>
|
||
|
||
<h3>3. Prohibited Conduct</h3>
|
||
<p>You agree not to:</p>
|
||
<ul style="margin-left: 2rem;">
|
||
<li>Reverse engineer or attempt to access our systems</li>
|
||
<li>Use CartSnitch for unlawful purposes</li>
|
||
<li>Attempt to bypass security measures</li>
|
||
<li>Harass or abuse other users</li>
|
||
</ul>
|
||
|
||
<h3>4. Disclaimer of Warranties</h3>
|
||
<p>CartSnitch is provided "as is" without warranties of any kind. We do not guarantee that deals, prices, or coupons will be accurate or available at all times.</p>
|
||
|
||
<h3>5. Limitation of Liability</h3>
|
||
<p>CartSnitch and its creators are not liable for any indirect, incidental, special, or consequential damages arising from your use of the app.</p>
|
||
|
||
<h3>6. Changes to Terms</h3>
|
||
<p>We may modify these Terms at any time. Continued use of CartSnitch constitutes acceptance of updated Terms.</p>
|
||
|
||
<h3>7. Contact Us</h3>
|
||
<p>Questions about these Terms? 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>
|