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>
79 lines
3.8 KiB
HTML
79 lines
3.8 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<title>FAQ – 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> / <a href="/docs/">Help</a> / FAQ
|
||
</nav>
|
||
|
||
<div class="doc-content">
|
||
<h2>Frequently Asked Questions</h2>
|
||
|
||
<h3>Is CartSnitch really free?</h3>
|
||
<p>Yes. CartSnitch is completely free to download and use. We don't charge subscription fees, and you never need to enter a credit card to use the app.</p>
|
||
|
||
<h3>How does CartSnitch make money?</h3>
|
||
<p>CartSnitch partners with grocery retailers and coupon providers. We make money when shoppers find deals through our platform. This aligns our incentives with yours — we only succeed when you save money.</p>
|
||
|
||
<h3>How accurate are the deals?</h3>
|
||
<p>We pull real-time deal data directly from store systems. Prices and coupons update throughout the day. If you notice a deal is out of date, let us know at support@cartsnitch.com.</p>
|
||
|
||
<h3>Which stores do you support?</h3>
|
||
<p>We support deals from all major grocery chains and many regional retailers. When you set up your account, you'll see the full list of available stores in your area.</p>
|
||
|
||
<h3>Can I use CartSnitch at self-checkout?</h3>
|
||
<p>Yes. Digital coupons work at self-checkout, in-store payment, and traditional checkout lines. Coupon details are provided in the app for reference at checkout.</p>
|
||
|
||
<h3>What happens to my shopping data?</h3>
|
||
<p>Your shopping list and search history stay on your phone. CartSnitch never stores or shares your personal shopping behavior. We collect only aggregate, anonymized data to improve our deals and services.</p>
|
||
|
||
<h3>How do you protect my personal information?</h3>
|
||
<p>We use industry-standard encryption to protect all your data. Your login credentials and payment information (if applicable) are never shared with third parties. See our <a href="/docs/privacy/">Privacy Policy</a> for full details.</p>
|
||
|
||
<h3>How do I report a bug or suggest a feature?</h3>
|
||
<p>Email us at <a href="mailto:support@cartsnitch.com">support@cartsnitch.com</a> with your feedback. We read every message and take your suggestions seriously.</p>
|
||
|
||
<h3>Can I delete my account?</h3>
|
||
<p>Yes. Email <a href="mailto:support@cartsnitch.com">support@cartsnitch.com</a> with your request, and we'll delete your account and associated data within 30 days.</p>
|
||
|
||
<h3>Does CartSnitch work offline?</h3>
|
||
<p>CartSnitch requires an internet connection to fetch the latest deals. However, your saved list will be available offline for reference.</p>
|
||
|
||
<h2>Still have questions?</h2>
|
||
<p>Contact our support team at <a href="mailto:support@cartsnitch.com">support@cartsnitch.com</a>. We're here to help.</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>
|