-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
602 lines (580 loc) · 20.9 KB
/
Copy pathindex.html
File metadata and controls
602 lines (580 loc) · 20.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
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Fadi's Design Library — 20 creative website directions</title>
<meta name="description" content="A working design library: 20 distinct website design directions, each with live variations, real content, and full industry-specific UX. Built by Fadi." />
<!-- Open Graph -->
<meta property="og:type" content="website" />
<meta property="og:title" content="Fadi's Design Library — 20 creative website directions" />
<meta property="og:description" content="20 working website designs, each with live variations, real content, and full industry-specific UX. Browse, click, explore." />
<meta property="og:image" content="https://fadi47at.github.io/test/og-cover.png" />
<meta property="og:url" content="https://fadi47at.github.io/test/" />
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Fadi's Design Library" />
<meta name="twitter:description" content="20 working website designs, each with live variations and real content." />
<meta name="twitter:image" content="https://fadi47at.github.io/test/og-cover.png" />
<!-- Favicon (inline SVG) -->
<link rel="icon" href="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Crect width='32' height='32' rx='6' fill='%2326251E'/%3E%3Crect x='8' y='8' width='16' height='16' rx='2' fill='%23FCFAF8'/%3E%3C/svg%3E" />
<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=Questrial&family=EB+Garamond:ital,wght@0,400;0,500;1,400;1,500&family=Space+Grotesk:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet" />
<style>
:root {
--bg: #FCFAF8;
--ink: #26251E;
--ink-soft: #504F49;
--border: rgba(38, 37, 30, 0.1);
--accent: #B89968;
--chip: #F3F0EF;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
font-family: 'Space Grotesk', sans-serif;
background: var(--bg);
color: var(--ink);
-webkit-font-smoothing: antialiased;
line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
/* =========================================================
Top bar
========================================================= */
.topbar {
position: sticky; top: 0; z-index: 50;
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
background: rgba(252, 250, 248, 0.85);
border-bottom: 1px solid var(--border);
}
.topbar__inner {
max-width: 1240px; margin: 0 auto;
padding: 16px 32px;
display: flex; align-items: center; justify-content: space-between;
}
.brand {
display: inline-flex; align-items: center; gap: 10px;
font-family: 'Questrial', sans-serif;
font-size: 17px; font-weight: 500;
}
.brand__mark {
width: 22px; height: 22px;
background: var(--ink);
border-radius: 5px;
position: relative;
}
.brand__mark::after {
content: ""; position: absolute; inset: 4px;
background: var(--bg); border-radius: 2px;
}
.topbar__nav { display: inline-flex; gap: 4px; }
.topbar__nav a {
padding: 8px 14px;
font-family: 'Questrial', sans-serif;
font-size: 15px;
color: var(--ink-soft);
transition: color 200ms ease;
}
.topbar__nav a:hover { color: var(--ink); }
.topbar__cta {
padding: 10px 18px;
background: var(--ink);
color: var(--bg);
font-family: 'Questrial', sans-serif;
font-size: 14px;
border-radius: 100px;
transition: transform 200ms ease;
}
.topbar__cta:hover { transform: translateY(-1px); }
/* =========================================================
Hero
========================================================= */
.hero {
max-width: 1240px; margin: 0 auto;
padding: 100px 32px 60px;
display: grid;
grid-template-columns: 1.3fr 1fr;
gap: 60px;
align-items: end;
}
.hero__eyebrow {
font-family: 'JetBrains Mono', monospace;
font-size: 12px; letter-spacing: 3px;
text-transform: uppercase;
color: var(--accent);
margin-bottom: 24px;
}
.hero__title {
font-family: 'Questrial', sans-serif;
font-size: clamp(48px, 7vw, 92px);
font-weight: 400; line-height: 0.95;
letter-spacing: -1px;
margin: 0 0 28px;
}
.hero__title em {
font-family: 'EB Garamond', serif;
font-style: italic;
font-weight: 500;
color: var(--accent);
}
.hero__lede {
font-family: 'EB Garamond', serif;
font-style: italic;
font-size: 22px; line-height: 1.5;
color: var(--ink-soft);
max-width: 540px;
margin: 0 0 36px;
}
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
display: inline-flex; align-items: center; justify-content: center;
padding: 14px 24px;
font-family: 'Questrial', sans-serif;
font-size: 15px;
border-radius: 100px;
transition: transform 200ms ease, background 200ms ease, color 200ms ease;
}
.btn--primary { background: var(--ink); color: var(--bg); }
.btn--primary:hover { transform: translateY(-2px); background: #3a3933; }
.btn--ghost {
border: 1px solid var(--ink);
color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--bg); }
/* Stats panel (right side) */
.hero__stats {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1px;
background: var(--border);
border: 1px solid var(--border);
border-radius: 12px;
overflow: hidden;
}
.stat {
background: var(--bg);
padding: 28px 24px;
}
.stat__num {
font-family: 'Questrial', sans-serif;
font-size: 48px; font-weight: 400;
letter-spacing: -1px;
line-height: 1;
margin-bottom: 6px;
}
.stat__num em { font-family: 'EB Garamond', serif; font-style: italic; color: var(--accent); }
.stat__label {
font-family: 'JetBrains Mono', monospace;
font-size: 11px; letter-spacing: 1.5px;
text-transform: uppercase;
color: var(--ink-soft);
}
/* =========================================================
Featured Designs grid
========================================================= */
.section {
max-width: 1240px; margin: 0 auto;
padding: 80px 32px;
}
.section__head {
display: flex; align-items: end; justify-content: space-between;
margin-bottom: 40px; gap: 24px;
flex-wrap: wrap;
}
.section__eyebrow {
font-family: 'JetBrains Mono', monospace;
font-size: 11px; letter-spacing: 2px;
text-transform: uppercase;
color: var(--accent);
margin-bottom: 8px;
}
.section__title {
font-family: 'Questrial', sans-serif;
font-size: 36px; font-weight: 400;
margin: 0;
letter-spacing: -0.5px;
}
.section__sub {
font-family: 'EB Garamond', serif;
font-style: italic;
color: var(--ink-soft);
max-width: 360px;
text-align: right;
}
.featured {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 18px;
}
.featured__card {
position: relative;
display: block;
border-radius: 8px;
overflow: hidden;
background: var(--chip);
aspect-ratio: 4 / 3;
transition: transform 300ms ease, box-shadow 300ms ease;
}
.featured__card:hover {
transform: translateY(-4px);
box-shadow: 0 20px 40px rgba(38, 37, 30, 0.12);
}
.featured__img {
width: 100%; height: 100%;
object-fit: cover;
display: block;
transition: transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.featured__card:hover .featured__img { transform: scale(1.04); }
.featured__meta {
position: absolute;
left: 0; right: 0; bottom: 0;
padding: 16px 18px;
background: linear-gradient(180deg, transparent, rgba(38,37,30,0.78));
color: #fff;
display: flex; align-items: end; justify-content: space-between;
}
.featured__name {
font-family: 'Questrial', sans-serif;
font-size: 18px;
}
.featured__cat {
font-family: 'JetBrains Mono', monospace;
font-size: 10px; letter-spacing: 1px;
text-transform: uppercase;
opacity: 0.85;
}
/* =========================================================
Categories
========================================================= */
.cats {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 18px;
}
.cat {
position: relative;
display: block;
padding: 36px 32px;
background: var(--chip);
border-radius: 8px;
transition: background 280ms ease, transform 280ms ease;
min-height: 220px;
}
.cat:hover {
background: var(--ink);
color: var(--bg);
transform: translateY(-4px);
}
.cat:hover .cat__arrow { color: var(--bg); }
.cat:hover .cat__desc { color: rgba(252, 250, 248, 0.7); }
.cat__icon {
font-size: 28px;
margin-bottom: 20px;
display: block;
}
.cat__name {
font-family: 'Questrial', sans-serif;
font-size: 26px;
margin: 0 0 8px;
}
.cat__desc {
font-family: 'EB Garamond', serif;
font-style: italic;
color: var(--ink-soft);
font-size: 15px;
line-height: 1.5;
transition: color 280ms ease;
}
.cat__arrow {
position: absolute; bottom: 28px; left: 32px;
font-family: 'JetBrains Mono', monospace;
font-size: 13px;
color: var(--ink);
transition: color 280ms ease;
}
.cat__count {
position: absolute; top: 28px; right: 32px;
font-family: 'JetBrains Mono', monospace;
font-size: 11px; letter-spacing: 1px;
color: var(--ink-soft);
}
.cat:hover .cat__count { color: rgba(252, 250, 248, 0.6); }
/* =========================================================
Process / How it works
========================================================= */
.process {
background: var(--ink);
color: var(--bg);
}
.process .section__eyebrow { color: var(--accent); }
.process .section__title { color: var(--bg); }
.process .section__sub { color: rgba(252,250,248,0.6); }
.process__grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 1px;
background: rgba(252,250,248,0.1);
border: 1px solid rgba(252,250,248,0.1);
border-radius: 8px;
overflow: hidden;
}
.step {
background: var(--ink);
padding: 32px 24px;
}
.step__num {
font-family: 'JetBrains Mono', monospace;
font-size: 11px; letter-spacing: 2px;
color: var(--accent);
margin-bottom: 18px;
}
.step__title {
font-family: 'Questrial', sans-serif;
font-size: 20px;
margin: 0 0 10px;
}
.step__desc {
font-family: 'EB Garamond', serif;
font-style: italic;
color: rgba(252,250,248,0.65);
font-size: 15px;
line-height: 1.55;
}
/* =========================================================
Footer
========================================================= */
.foot {
max-width: 1240px; margin: 0 auto;
padding: 60px 32px 40px;
display: flex;
align-items: center; justify-content: space-between;
flex-wrap: wrap; gap: 16px;
border-top: 1px solid var(--border);
}
.foot__small {
font-family: 'JetBrains Mono', monospace;
font-size: 12px; letter-spacing: 1px;
color: var(--ink-soft);
}
.foot__links { display: inline-flex; gap: 24px; }
.foot__links a {
font-family: 'Questrial', sans-serif;
font-size: 14px;
color: var(--ink-soft);
transition: color 200ms ease;
}
.foot__links a:hover { color: var(--ink); }
/* =========================================================
Responsive
========================================================= */
@media (max-width: 980px) {
.hero { grid-template-columns: 1fr; padding: 60px 24px 40px; }
.featured { grid-template-columns: repeat(2, 1fr); }
.cats { grid-template-columns: 1fr; }
.process__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
.topbar__nav { display: none; }
.featured { grid-template-columns: 1fr; }
.process__grid { grid-template-columns: 1fr; }
.section { padding: 60px 24px; }
}
</style>
</head>
<body>
<!-- Top bar -->
<header class="topbar">
<div class="topbar__inner">
<a class="brand" href="#">
<span class="brand__mark"></span>
<span>Fadi</span>
</a>
<nav class="topbar__nav">
<a href="#featured">Designs</a>
<a href="#categories">Categories</a>
<a href="#process">Process</a>
<a href="./vad/">Services</a>
</nav>
<a class="topbar__cta" href="./gallery/">Browse library →</a>
</div>
</header>
<!-- Hero -->
<section class="hero">
<div>
<div class="hero__eyebrow">A design library · 2026</div>
<h1 class="hero__title">Twenty directions<br/>for your <em>next website</em>.</h1>
<p class="hero__lede">A working library of twenty distinct website designs — real layouts, real content, fully interactive. Pick the direction that fits the brief, then we make it yours.</p>
<div class="hero__actions">
<a class="btn btn--primary" href="./gallery/">Browse the gallery</a>
<a class="btn btn--ghost" href="./vad/">See Fadi's services</a>
</div>
</div>
<div class="hero__stats">
<div class="stat">
<div class="stat__num">20<em>×</em></div>
<div class="stat__label">Design directions</div>
</div>
<div class="stat">
<div class="stat__num">60<em>+</em></div>
<div class="stat__label">Live variations</div>
</div>
<div class="stat">
<div class="stat__num">8</div>
<div class="stat__label">Industries covered</div>
</div>
<div class="stat">
<div class="stat__num">1<em>↗</em></div>
<div class="stat__label">Library, ready to ship</div>
</div>
</div>
</section>
<!-- Featured designs -->
<section class="section" id="featured">
<div class="section__head">
<div>
<div class="section__eyebrow">Featured</div>
<h2 class="section__title">Eight to start with</h2>
</div>
<p class="section__sub">A taste of the library. Click any to open the full design with variations.</p>
</div>
<div class="featured">
<a class="featured__card" href="./gallery/browser.html?design=1&var=0">
<img class="featured__img" src="./gallery/thumbs/01_lumiere.png" alt="Lumière" loading="lazy" />
<div class="featured__meta">
<div class="featured__name">Lumière</div>
<div class="featured__cat">Editorial</div>
</div>
</a>
<a class="featured__card" href="./gallery/browser.html?design=4&var=0">
<img class="featured__img" src="./gallery/thumbs/04_crescent.png" alt="Crescent" loading="lazy" />
<div class="featured__meta">
<div class="featured__name">Crescent</div>
<div class="featured__cat">Restaurant</div>
</div>
</a>
<a class="featured__card" href="./gallery/browser.html?design=2&var=0">
<img class="featured__img" src="./gallery/thumbs/02_nomad.png" alt="Nomad" loading="lazy" />
<div class="featured__meta">
<div class="featured__name">Nomad</div>
<div class="featured__cat">Travel</div>
</div>
</a>
<a class="featured__card" href="./gallery/browser.html?design=8&var=0">
<img class="featured__img" src="./gallery/thumbs/08_vertex.png" alt="Vertex" loading="lazy" />
<div class="featured__meta">
<div class="featured__name">Vertex</div>
<div class="featured__cat">Finance</div>
</div>
</a>
<a class="featured__card" href="./gallery/browser.html?design=18&var=0">
<img class="featured__img" src="./gallery/thumbs/18_tide.png" alt="Tide" loading="lazy" />
<div class="featured__meta">
<div class="featured__name">Tide</div>
<div class="featured__cat">Real estate</div>
</div>
</a>
<a class="featured__card" href="./gallery/browser.html?design=12&var=0">
<img class="featured__img" src="./gallery/thumbs/12_brewco.png" alt="BrewCo" loading="lazy" />
<div class="featured__meta">
<div class="featured__name">BrewCo</div>
<div class="featured__cat">Coffee</div>
</div>
</a>
<a class="featured__card" href="./gallery/browser.html?design=11&var=0">
<img class="featured__img" src="./gallery/thumbs/11_mira.png" alt="Mira" loading="lazy" />
<div class="featured__meta">
<div class="featured__name">Mira</div>
<div class="featured__cat">Wellness</div>
</div>
</a>
<a class="featured__card" href="./gallery/browser.html?design=5&var=0">
<img class="featured__img" src="./gallery/thumbs/05_verdant.png" alt="Verdant" loading="lazy" />
<div class="featured__meta">
<div class="featured__name">Verdant</div>
<div class="featured__cat">Nature</div>
</div>
</a>
</div>
</section>
<!-- Categories -->
<section class="section" id="categories">
<div class="section__head">
<div>
<div class="section__eyebrow">Categories</div>
<h2 class="section__title">Three rooms in the library</h2>
</div>
<p class="section__sub">Each room serves a different need — find the one that fits.</p>
</div>
<div class="cats">
<a class="cat" href="./gallery/">
<span class="cat__count">20 designs</span>
<span class="cat__icon">✦</span>
<h3 class="cat__name">Design Gallery</h3>
<p class="cat__desc">Twenty distinct directions with three creative variations each. Filter by industry, by mood, or just browse.</p>
<span class="cat__arrow">Browse all 20 →</span>
</a>
<a class="cat" href="./gallery/quanta.html">
<span class="cat__count">Full platform</span>
<span class="cat__icon">✎</span>
<h3 class="cat__name">Quanta</h3>
<p class="cat__desc">A complete online learning platform design — courses, instructors, pricing, community, the whole thing.</p>
<span class="cat__arrow">Open Quanta →</span>
</a>
<a class="cat" href="./vad/">
<span class="cat__count">Hire Fadi</span>
<span class="cat__icon">⌬</span>
<h3 class="cat__name">Fadi's Services</h3>
<p class="cat__desc">A working landing page for the work itself — websites, e-commerce, AI tools, automation, workplace.</p>
<span class="cat__arrow">See services →</span>
</a>
</div>
</section>
<!-- Process -->
<section class="process" id="process">
<div class="section" style="padding-bottom: 100px;">
<div class="section__head">
<div>
<div class="section__eyebrow">How it works</div>
<h2 class="section__title">From a direction to a finished site</h2>
</div>
<p class="section__sub">Four steps. No surprises, no scope creep.</p>
</div>
<div class="process__grid">
<div class="step">
<div class="step__num">01 · Direction</div>
<h3 class="step__title">Pick a starting point</h3>
<p class="step__desc">Browse the library, find a design that matches the brief, the brand, the audience.</p>
</div>
<div class="step">
<div class="step__num">02 · Customize</div>
<h3 class="step__title">Make it yours</h3>
<p class="step__desc">Colors, type, content, real photography. Every detail tuned to your business.</p>
</div>
<div class="step">
<div class="step__num">03 · Build</div>
<h3 class="step__title">Ship a working site</h3>
<p class="step__desc">Clean, fast, responsive, accessible. Hosted and ready to launch from day one.</p>
</div>
<div class="step">
<div class="step__num">04 · Grow</div>
<h3 class="step__title">Iterate from real use</h3>
<p class="step__desc">Analytics, A/B tests, fresh content. A website that keeps getting better.</p>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="foot">
<span class="foot__small">© 2026 Fadi · Designed & built in-house</span>
<div class="foot__links">
<a href="./gallery/">Gallery</a>
<a href="./gallery/quanta.html">Quanta</a>
<a href="./vad/">Services</a>
</div>
</footer>
</body>
</html>