File size: 5,242 Bytes
61bec0b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta name="description" content="Learn about AnyCoder Coffee's story and mission to serve the developer community">
    <title>About Us - AnyCoder Coffee</title>
    <link rel="stylesheet" href="assets/css/styles.css">
    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    <link href="https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@400;600&family=Source+Sans+Pro:wght@400;600&display=swap" rel="stylesheet">
</head>
<body>
    <header>
        <div class="container">
            <div class="logo">
                <h1><span class="logo-code">&lt;/&gt;</span> AnyCoder Coffee</h1>
            </div>
            <nav>
                <button class="mobile-menu-toggle" aria-label="Toggle navigation menu">
                    <span></span>
                    <span></span>
                    <span></span>
                </button>
                <ul class="nav-menu">
                    <li><a href="index.html">Home</a></li>
                    <li><a href="about.html" class="active">About</a></li>
                    <li><a href="contact.html">Contact</a></li>
                </ul>
            </nav>
        </div>
    </header>

    <main>
        <section class="page-hero">
            <div class="container">
                <h1>Our Story</h1>
                <p>From a developer's dream to a community hub</p>
            </div>
        </section>

        <section class="about-content">
            <div class="container">
                <div class="about-grid">
                    <div class="about-text">
                        <h2>Born from Late-Night Coding Sessions</h2>
                        <p>AnyCoder Coffee was founded in 2018 by a group of developers who were tired of compromising between good coffee and productive workspaces. We wanted a place that understood the unique needs of programmers - fast internet, plenty of power outlets, comfortable seating, and most importantly, exceptional coffee.</p>
                        
                        <p>What started as a small café with just a few tables has grown into a thriving community space where developers gather to work, collaborate, and share ideas. We've hosted hackathons, meetups, and coding workshops, becoming a central hub for the local tech community.</p>
                        
                        <h3>Our Mission</h3>
                        <p>To create the perfect environment where developers can focus, create, and connect over great coffee. We believe that the right atmosphere and brew can turn good code into great software.</p>
                    </div>
                    <div class="about-image">
                        <div class="image-placeholder">
                            <span>Coffee & Coding Space</span>
                        </div>
                    </div>
                </div>

                <div class="values-section">
                    <h2>Our Values</h2>
                    <div class="values-grid">
                        <div class="value-item">
                            <h3>Quality</h3>
                            <p>We source only the finest ethically-grown beans and maintain rigorous brewing standards.</p>
                        </div>
                        <div class="value-item">
                            <h3>Community</h3>
                            <p>We foster connections between developers through events, collaborations, and shared spaces.</p>
                        </div>
                        <div class="value-item">
                            <h3>Innovation</h3>
                            <p>We continuously improve our space, services, and offerings to meet developers' evolving needs.</p>
                        </div>
                    </div>
                </div>
            </div>
        </section>
    </main>

    <footer>
        <div class="container">
            <div class="footer-content">
                <div class="footer-section">
                    <h3>AnyCoder Coffee</h3>
                    <p>Where code meets coffee perfection</p>
                </div>
                <div class="footer-section">
                    <h4>Connect</h4>
                    <ul>
                        <li><a href="#">GitHub</a></li>
                        <li><a href="#">Twitter</a></li>
                        <li><a href="#">LinkedIn</a></li>
                    </ul>
                </div>
                <div class="footer-section">
                    <h4>Resources</h4>
                    <ul>
                        <li><a href="#">Tech Events</a></li>
                        <li><a href="#">Developer Blog</a></li>
                        <li><a href="#">Coffee Recipes</a></li>
                    </ul>
                </div>
            </div>
            <div class="footer-bottom">
                <p>&copy; 2023 AnyCoder Coffee. All rights reserved.</p>
            </div>
        </div>
    </footer>

    <script src="assets/js/main.js"></script>
</body>
</html>