-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathboog.html
More file actions
300 lines (263 loc) · 9.9 KB
/
Copy pathboog.html
File metadata and controls
300 lines (263 loc) · 9.9 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<!-- Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-B8MYVB3T7F"></script>
<script>window.dataLayer=window.dataLayer||[];function gtag(){dataLayer.push(arguments);}gtag("js",new Date());gtag("config","G-B8MYVB3T7F");</script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Boog Design — Louis Brouwer</title>
<meta name="description" content="Furniture design and fabrication business started at age 15. Over 25 commissions including kitchens, tables, stools, and shelving. Roughly GBP 50k total revenue.">
<meta name="author" content="Louis Brouwer">
<link rel="canonical" href="https://louisbrouwer.com/boog.html">
<meta property="og:title" content="Boog Design">
<meta property="og:description" content="Furniture business started at age 15. Over 25 commissions, roughly GBP 50k total revenue (2015 to 2022).">
<meta property="og:image" content="https://louisbrouwer.com/images/boog/logo/boog-logo.jpeg">
<meta property="og:url" content="https://louisbrouwer.com/boog.html">
<meta property="og:type" content="article">
<meta name="twitter:card" content="summary_large_image">
<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=Inter:wght@300;400;500;600&display=swap" rel="stylesheet">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--bg: #0a0a0a;
--bg-elevated: #141414;
--text: #e0e0e0;
--text-muted: #888;
--accent: #c8c8c8;
--border: #222;
--max-width: 1100px;
}
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
background: var(--bg);
color: var(--text);
line-height: 1.6;
font-size: 16px;
-webkit-font-smoothing: antialiased;
}
a {
color: var(--text);
text-decoration: underline;
text-decoration-color: var(--text-muted);
text-underline-offset: 3px;
transition: text-decoration-color 0.2s;
}
a:hover {
text-decoration-color: var(--text);
}
/* NAV */
nav {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 100;
padding: 20px 40px;
display: flex;
justify-content: space-between;
align-items: center;
background: rgba(10,10,10,0.85);
backdrop-filter: blur(10px);
border-bottom: 1px solid var(--border);
}
nav .name {
font-weight: 500;
font-size: 15px;
letter-spacing: 0.02em;
text-decoration: none;
}
nav .links {
display: flex;
gap: 28px;
}
nav .links a {
font-size: 13px;
color: var(--text-muted);
text-decoration: none;
letter-spacing: 0.03em;
text-transform: uppercase;
transition: color 0.2s;
}
nav .links a:hover {
color: var(--text);
}
/* CONTENT */
.content {
max-width: var(--max-width);
margin: 0 auto;
padding: 120px 40px 80px;
}
.back-link {
display: inline-block;
margin-bottom: 40px;
font-size: 13px;
color: var(--text-muted);
text-transform: uppercase;
letter-spacing: 0.05em;
}
h1 {
font-size: 36px;
font-weight: 300;
letter-spacing: -0.02em;
margin-bottom: 16px;
}
.intro {
font-size: 16px;
font-weight: 300;
color: var(--text-muted);
max-width: 700px;
margin-bottom: 60px;
line-height: 1.7;
}
/* WORK GRID */
.work-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
}
.work-item {
border: 1px solid var(--border);
background: var(--bg-elevated);
overflow: hidden;
transition: border-color 0.2s;
text-decoration: none;
color: inherit;
}
.work-item:hover {
border-color: #333;
}
.work-img {
width: 100%;
height: 280px;
object-fit: cover;
display: block;
background: #1a1a1a;
}
.work-info {
padding: 24px;
}
.work-info h3 {
font-size: 18px;
font-weight: 500;
margin-bottom: 8px;
}
.work-info p {
font-size: 14px;
font-weight: 300;
color: var(--text-muted);
line-height: 1.6;
}
/* FOOTER */
footer {
max-width: var(--max-width);
margin: 0 auto;
padding: 40px 40px 60px;
border-top: 1px solid var(--border);
font-size: 12px;
color: var(--text-muted);
}
/* RESPONSIVE */
@media (max-width: 768px) {
nav { padding: 16px 20px; }
nav .links { gap: 16px; }
nav .links a { font-size: 12px; }
.content { padding: 100px 20px 60px; }
h1 { font-size: 28px; }
.work-grid { grid-template-columns: 1fr; }
.work-img { height: 200px; }
}
</style>
</head>
<body>
<nav>
<a href="index.html" class="name">Louis Brouwer</a>
<div class="links">
<a href="index.html#about">About</a>
<a href="index.html#work">Work</a>
<a href="index.html#reading">Reading</a>
<a href="index.html#log">Log</a>
<a href="index.html#contact">Contact</a>
</div>
</nav>
<div class="content">
<a href="index.html" class="back-link">← Back</a>
<h1>Boog Design</h1>
<p class="intro">I started Boog Design at 15 from my parents' garage. Over the next seven years I delivered more than 25 commissions including kitchens, tables, stools, shelving, and one off pieces. Roughly £50k total revenue.</p>
<div class="work-grid">
<a href="boog-kitchen.html" class="work-item">
<img class="work-img" src="images/boog/kitchen/hero.jpg" alt="Custom Kitchen">
<div class="work-info">
<h3>Custom Kitchen</h3>
<p>A full bespoke kitchen with oak shutters, custom cabinetry and handmade wooden panel details.</p>
</div>
</a>
<a href="boog-cabinet.html" class="work-item">
<img class="work-img" src="images/boog/cabinet/hero.png" alt="Green Cabinet">
<div class="work-info">
<h3>Green Cabinet</h3>
<p>A mint green kitchen cabinet with reclaimed wooden crate drawers.</p>
</div>
</a>
<a href="boog-chair.html" class="work-item">
<img class="work-img" src="images/boog/chair/hero.jpg" alt="Oak Chair">
<div class="work-info">
<h3>Oak Chair</h3>
<p>A solid oak chair inspired by the Steltman chair, with a reclaimed wood coffee table.</p>
</div>
</a>
<a href="boog-stool.html" class="work-item">
<img class="work-img" src="images/boog/stool/hero.jpg" alt="Bent Plywood Stool">
<div class="work-info">
<h3>Bent Plywood Stool</h3>
<p>A bent plywood seat on a powder-coated yellow steel frame.</p>
</div>
</a>
<a href="boog-chess.html" class="work-item">
<img class="work-img" src="images/boog/chess-table/hero.jpg" alt="Chess Table">
<div class="work-info">
<h3>Chess Table</h3>
<p>An end-grain chess board with felt-lined storage drawer, plus a spalted wood table.</p>
</div>
</a>
<a href="boog-vase.html" class="work-item">
<img class="work-img" src="images/boog/vase/hero.jpg" alt="Wooden Vase">
<div class="work-info">
<h3>Wooden Vase</h3>
<p>A geometric stacked-wood vase from off-cuts.</p>
</div>
</a>
<a href="boog-shelving.html" class="work-item">
<img class="work-img" src="images/boog/shelving/hero.jpg" alt="Shelving">
<div class="work-info">
<h3>Shelving</h3>
<p>A steel cable and bamboo shelving unit with copper pin joints.</p>
</div>
</a>
<a href="boog-wardrobe.html" class="work-item">
<img class="work-img" src="images/boog/wardrobe/hero.jpg" alt="Built-in Wardrobe">
<div class="work-info">
<h3>Built-in Wardrobe</h3>
<p>An under-stairs built-in wardrobe with shoe drawers and hanging space.</p>
</div>
</a>
<a href="boog-plates.html" class="work-item">
<img class="work-img" src="images/boog/plates/hero.jpg" alt="Turned Plates">
<div class="work-info">
<h3>Turned Plates</h3>
<p>Lathe-turned wooden plates and bowls.</p>
</div>
</a>
</div>
</div>
<footer>
Louis Brouwer © 2026
</footer>
</body>
</html>