Files
cartsnitch.com/about/index.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

80 lines
3.9 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>About 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> / About
</nav>
<section style="padding: 3rem 2rem;">
<h2>About CartSnitch</h2>
<div class="doc-content">
<h3>Our Mission</h3>
<p>We believe every shopper deserves to get the most value from what they spend at the grocery store. CartSnitch exists to eliminate the friction between you and the deals you deserve.</p>
<h3>The Problem We're Solving</h3>
<p>Grocery shopping is stressful. You're juggling a full schedule, a family, and a tight budget. By the time you get to the store, you've already forgotten which items were on sale. Coupons are scattered across apps and paper. You never know if you got a good deal.</p>
<p>The result? Shoppers leave money on the table—<strong>on average, $50+ per month in missed deals</strong>—even when they're trying their best.</p>
<h3>Our Solution</h3>
<p>CartSnitch aggregates real-time deals from your favorite stores and matches coupons to your shopping list. In two minutes, you know exactly which items are on sale, which coupons apply, and how much you'll save. At checkout, you save big—without thinking.</p>
<h3>How We're Different</h3>
<ul style="margin-left: 2rem;">
<li><strong>Real-time accuracy:</strong> We pull data directly from store systems, not social media or crowd-sourced tips.</li>
<li><strong>Shopper-first design:</strong> We optimize for the five minutes you have at the store, not engagement metrics.</li>
<li><strong>Privacy by default:</strong> Your shopping data stays on your phone. We never sell it or share it without consent.</li>
<li><strong>Actually free:</strong> No ads, no subscriptions, no hidden fees. We succeed when you save money.</li>
</ul>
<h3>Built for Busy Parents</h3>
<p>CartSnitch is designed by people who grocery shop on real budgets. We understand that saving $10 or $20 per trip matters. We built CartSnitch to make it effortless.</p>
<h3>Our Values</h3>
<ul style="margin-left: 2rem;">
<li><strong>Customer obsession:</strong> Every decision starts with the question "Does this help shoppers save?"</li>
<li><strong>Simplicity:</strong> CartSnitch should be easier than clipping coupons, not another task on your list.</li>
<li><strong>Transparency:</strong> We tell you how much you save and we never hide what we're doing with your data.</li>
<li><strong>Reliability:</strong> You depend on CartSnitch to help you budget. We take that responsibility seriously.</li>
</ul>
<h3>Get in Touch</h3>
<p>Have a question or feedback? We'd love to hear from you. Email <a href="mailto:support@cartsnitch.com">support@cartsnitch.com</a> anytime.</p>
</div>
</section>
</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>