|
|
<!DOCTYPE html> |
|
|
<html lang="en"> |
|
|
<head> |
|
|
<meta charset="UTF-8"> |
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
|
<title>Chowder | Tech That Doesn't Suck</title> |
|
|
<link rel="stylesheet" href="style.css"> |
|
|
<script src="https://cdn.tailwindcss.com"></script> |
|
|
<script> |
|
|
tailwind.config = { |
|
|
theme: { |
|
|
extend: { |
|
|
colors: { |
|
|
olive: '#626344' |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
</script> |
|
|
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script> |
|
|
<script src="https://unpkg.com/feather-icons"></script> |
|
|
<script src="components/navbar.js"></script> |
|
|
<script src="components/product-card.js"></script> |
|
|
<script src="components/footer.js"></script> |
|
|
</head> |
|
|
<body class="bg-black text-white font-sans antialiased"> |
|
|
<custom-navbar></custom-navbar> |
|
|
|
|
|
<main class="min-h-screen grain-bg"> |
|
|
|
|
|
<section class="py-20 px-4 sm:px-6 lg:px-8 max-w-7xl mx-auto"> |
|
|
<div class="text-center space-y-6"> |
|
|
<h1 class="text-5xl md:text-7xl font-bold tracking-tight">Tech That Doesn't Suck</h1> |
|
|
<p class="text-xl md:text-2xl text-olive max-w-3xl mx-auto"> |
|
|
We started in 2024 because honestly, most tech stores are boring as hell. Here's something better. |
|
|
</p> |
|
|
<a href="#products" class="inline-block px-8 py-3 bg-olive hover:bg-opacity-90 text-black font-medium rounded-full transition-all"> |
|
|
Browse Stuff |
|
|
</a> |
|
|
</div> |
|
|
</section> |
|
|
|
|
|
|
|
|
<section id="products" class="py-16 px-4 sm:px-6 lg:px-8 max-w-7xl mx-auto"> |
|
|
<h2 class="text-3xl font-bold mb-10 text-center">Things You Might Actually Want</h2> |
|
|
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-8"> |
|
|
<custom-product |
|
|
title="The Good Headphones" |
|
|
price="199" |
|
|
image="http://static.photos/technology/1200x630/25" |
|
|
category="Audio"> |
|
|
Noise canceling so good you'll forget your coworkers exist. |
|
|
</custom-product> |
|
|
|
|
|
<custom-product |
|
|
title="The Fast Charger" |
|
|
price="49" |
|
|
image="http://static.photos/technology/1200x630/42" |
|
|
category="Accessories"> |
|
|
Charges your phone stupid fast. Like, really stupid fast. |
|
|
</custom-product> |
|
|
|
|
|
<custom-product |
|
|
title="The Nice Keyboard" |
|
|
price="149" |
|
|
image="http://static.photos/technology/1200x630/13" |
|
|
category="Peripherals"> |
|
|
Clicky, tactile, and won't make you hate typing. |
|
|
</custom-product> |
|
|
</div> |
|
|
</section> |
|
|
|
|
|
|
|
|
<section class="py-20 px-4 sm:px-6 lg:px-8 max-w-4xl mx-auto text-center"> |
|
|
<h2 class="text-3xl font-bold mb-6">Why Chowder Exists</h2> |
|
|
<p class="text-lg leading-relaxed mb-8"> |
|
|
Look, shopping for tech usually feels like doing taxes. We're here to change that. |
|
|
No jargon, no nonsense - just good products we'd actually use ourselves. |
|
|
</p> |
|
|
<div class="inline-flex items-center space-x-2 text-olive"> |
|
|
<span>Est. 2024</span> |
|
|
<span>•</span> |
|
|
<span>Made by humans</span> |
|
|
<span>•</span> |
|
|
<span>Not evil (probably)</span> |
|
|
</div> |
|
|
</section> |
|
|
</main> |
|
|
|
|
|
<custom-footer></custom-footer> |
|
|
|
|
|
<script> |
|
|
feather.replace(); |
|
|
</script> |
|
|
<script src="script.js"></script> |
|
|
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script> |
|
|
</body> |
|
|
</html> |