-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
103 lines (92 loc) · 3.26 KB
/
about.html
File metadata and controls
103 lines (92 loc) · 3.26 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LocalLoop – About</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- HEADER -->
<div class="header">
<div class="header-left">
<div class="logo">LocalLoop</div>
<nav class="nav">
<a href="index.html">Home</a>
<a href="explore.html">Explore</a>
<a href="about.html">About</a>
<a href="contact.html">Contact</a>
</nav>
</div>
<div class="secondary-nav">
<a href="#">Boston</a>
<a href="#">New York</a>
<a href="#">SF</a>
</div>
</div>
<div class="page-heading">
<h2>About LocalLoop</h2>
</div>
<div class="about-section">
<h2>Who We Are</h2>
<p>LocalLoop is a community-driven guide to the small, often overlooked places that make cities worth living in. We're not a review app or a booking platform — we're a curated collection of spots that locals actually love.</p>
<p>We started in Boston in 2023 with a simple Google Doc shared between friends. That doc became a newsletter, and the newsletter became LocalLoop. Today we cover three cities, have a small volunteer team of city writers, and are still just as excited about finding a great latte as we were on day one.</p>
<h2>How We Choose Places</h2>
<p>Every spot on LocalLoop is visited in person before it's listed. We don't accept paid placements, we don't use affiliate links, and we don't list anything just because it's popular. If it's on LocalLoop, someone on our team genuinely liked it.</p>
<h2>Our Values</h2>
<ul>
<li><strong>Community first:</strong> We highlight small, independent businesses over chains.</li>
<li><strong>Honest curation:</strong> No sponsored content. Ever.</li>
<li><strong>Accessibility:</strong> We note transit access and wheelchair accessibility where known.</li>
<li><strong>Local knowledge:</strong> Our writers are residents, not tourists.</li>
</ul>
<h2>The Team</h2>
<table>
<thead>
<tr>
<th>Name</th>
<th>City</th>
<th>Role</th>
<th>Favorite Spot</th>
</tr>
</thead>
<tbody>
<tr>
<td>Maya R.</td>
<td>Boston</td>
<td>Founder & Editor</td>
<td>The Thinkboo Cup</td>
</tr>
<tr>
<td>Jordan T.</td>
<td>New York</td>
<td>City Writer</td>
<td>Nighttime Lounge</td>
</tr>
<tr>
<td>Priya K.</td>
<td>San Francisco</td>
<td>City Writer</td>
<td>Breadline Bakery</td>
</tr>
<tr>
<td>Sam W.</td>
<td>Boston</td>
<td>Photography</td>
<td>Riverway Meadow</td>
</tr>
</tbody>
</table>
<br>
<p>Want to suggest a spot or join the team? <a href="contact.html">Get in touch →</a></p>
</div>
<!-- FOOTER -->
<div class="footer">
<p>© 2026 LocalLoop |
<a href="contact.html">Contact Us</a> |
<a href="about.html">About</a>
</p>
<p style="font-size:12px; color: #ccc;">Discover local places worth sharing.</p>
</div>
</body>
</html>