File size: 4,041 Bytes
884b0e4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
c1a1ebb
 
 
884b0e4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!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">
        <!-- Hero Section -->
        <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>

        <!-- Products Grid -->
        <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>

        <!-- About 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>