-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDesignSelectionPage.jsx
More file actions
869 lines (838 loc) · 36.5 KB
/
Copy pathDesignSelectionPage.jsx
File metadata and controls
869 lines (838 loc) · 36.5 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
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
import React from 'react';
import { Link, useNavigate } from 'react-router-dom';
import { useVisualSettings } from '../context/VisualSettingsContext';
import { motion } from 'framer-motion';
import {
ArrowRightIcon,
BugIcon,
SparkleIcon,
LayoutIcon,
ArrowLeftIcon,
LineSegmentsIcon,
CloudIcon,
PaintBrushBroadIcon,
ScrollIcon,
TerminalWindowIcon,
PlantIcon,
TerminalIcon,
} from '@phosphor-icons/react';
import Seo from '../components/Seo';
import GenerativeArt from '../components/GenerativeArt';
import LuxeArt from '../components/LuxeArt';
const DesignSelectionPage = () => {
const navigate = useNavigate();
const { setFezcodexTheme } = useVisualSettings();
const activateTerracotta = () => {
setFezcodexTheme('terracotta');
navigate('/');
};
const activateMist = () => {
setFezcodexTheme('mist');
navigate('/');
};
return (
<div className="min-h-screen bg-[#F5F5F0] text-[#1A1A1A] font-sans selection:bg-[#C0B298] selection:text-black flex flex-col">
<Seo
title="Design System | Fezcodex"
description="Choose your design exploration: Brutalist Brufez or Refined Fezluxe."
/>
<div className="max-w-[1400px] mx-auto px-6 md:px-12 py-24 flex-1 flex flex-col">
<header className="mb-24 pt-12 border-b border-black/10 pb-12 text-center md:text-left">
<Link
to="/"
className="inline-flex items-center gap-2 mb-8 font-outfit text-xs uppercase tracking-widest text-[#1A1A1A]/40 hover:text-[#8D4004] transition-colors"
>
<ArrowLeftIcon /> Back to Root
</Link>
<h1 className="font-playfairDisplay text-7xl md:text-9xl text-[#1A1A1A] mb-6">
Aesthetics
</h1>
<p className="font-outfit text-sm text-[#1A1A1A]/60 max-w-lg leading-relaxed">
Explore the visual foundations of Fezcodex. Choose between raw
systemic brutalism or refined architectural elegance.
</p>
</header>
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-12 lg:gap-16 flex-1">
{/* BRUFEZ CARD */}
<Link to="/design/brufez" className="group block relative">
<motion.div
whileHover={{ y: -10 }}
className="h-full bg-[#050505] border border-white/5 p-12 flex flex-col justify-between rounded-sm overflow-hidden shadow-2xl transition-all duration-500"
>
<div className="absolute inset-0 opacity-[0.05] pointer-events-none group-hover:opacity-[0.1] transition-opacity">
<GenerativeArt
seed="brufez"
className="w-full h-full grayscale"
/>
</div>
<div className="space-y-8 relative z-10">
<div className="w-16 h-16 flex items-center justify-center bg-white/5 border border-white/10 text-[#10B981] rounded-sm group-hover:bg-[#10B981] group-hover:text-black transition-colors">
<BugIcon size={32} weight="fill" />
</div>
<div className="space-y-4">
<h2 className="text-5xl font-black text-white uppercase tracking-tighter leading-none">
Brufez
</h2>
<p className="font-mono text-xs text-gray-500 uppercase tracking-widest leading-relaxed">
Systemic transparency. Celebrated structural logic, 1PX
borders, and high-frequency contrast.
</p>
</div>
</div>
<div className="mt-12 pt-8 border-t border-white/10 flex justify-between items-center relative z-10">
<span className="font-mono text-[10px] uppercase tracking-[0.3em] text-gray-600 group-hover:text-white transition-colors">
Launch_Spec
</span>
<ArrowRightIcon
className="text-gray-600 group-hover:text-[#10B981] group-hover:translate-x-2 transition-all"
size={24}
/>
</div>
</motion.div>
</Link>
{/* TERRACOTTA CARD */}
<button
type="button"
onClick={activateTerracotta}
className="group block relative text-left"
>
<motion.div
whileHover={{ y: -10 }}
className="h-full bg-[#F3ECE0] border border-[#1A161320] p-12 flex flex-col justify-between rounded-sm overflow-hidden shadow-[0_30px_60px_-30px_#1A161330] transition-all duration-500 relative"
>
<div
className="absolute inset-0 pointer-events-none"
style={{
background:
'radial-gradient(600px 400px at 80% -10%, #E8DECE 0%, transparent 55%), radial-gradient(500px 500px at 0% 110%, #EDE3D3 0%, transparent 50%)',
}}
/>
<div className="space-y-8 relative z-10">
<div className="w-16 h-16 flex items-center justify-center bg-[#C96442]/10 text-[#9E4A2F] border border-[#C96442]/30 rounded-sm group-hover:bg-[#C96442] group-hover:text-[#F3ECE0] group-hover:border-[#C96442] transition-all duration-500">
<LineSegmentsIcon size={32} weight="light" />
</div>
<div className="space-y-4">
<h2 className="text-5xl font-playfairDisplay italic text-[#1A1613] leading-none tracking-tight">
Terracotta
</h2>
<p className="font-mono text-xs text-[#2E2620]/70 uppercase tracking-widest leading-relaxed">
Weighted editorial. Bone paper, hairline rules, serif wordmarks that hang true.
</p>
</div>
</div>
<div className="mt-12 pt-8 border-t border-[#1A161320] flex justify-between items-center relative z-10">
<span className="font-mono text-[10px] uppercase tracking-[0.3em] text-[#2E2620]/50 group-hover:text-[#9E4A2F] transition-colors">
Hang_Plumb
</span>
<ArrowRightIcon
className="text-[#2E2620]/40 group-hover:text-[#C96442] group-hover:translate-x-2 transition-all"
size={24}
/>
</div>
</motion.div>
</button>
{/* MIST CARD */}
<button
type="button"
onClick={activateMist}
className="group block relative text-left"
>
<motion.div
whileHover={{ y: -10 }}
className="h-full bg-[#EEF2F1] p-12 flex flex-col justify-between rounded-2xl overflow-hidden shadow-[0_30px_60px_-30px_rgba(60,72,69,0.45)] transition-all duration-500 relative"
>
<div
className="absolute inset-0 pointer-events-none"
style={{
background:
'radial-gradient(600px 400px at 80% -10%, #FFFFFF 0%, transparent 55%), radial-gradient(500px 500px at 0% 110%, #D2DBD8 0%, transparent 50%)',
}}
/>
<div className="space-y-8 relative z-10">
<div className="w-16 h-16 flex items-center justify-center bg-white/60 text-[#5F837B] rounded-full shadow-[0_10px_30px_rgba(95,131,123,0.2)] backdrop-blur-sm group-hover:bg-[#5F837B] group-hover:text-[#EEF2F1] transition-all duration-500">
<CloudIcon size={32} weight="light" />
</div>
<div className="space-y-4">
<h2 className="text-5xl font-instr-serif italic text-[#3C4845] leading-none tracking-tight">
Mist
</h2>
<p className="font-mono text-xs text-[#5C6B67] lowercase tracking-widest leading-relaxed">
hypnagogic fog. pale eucalyptus veils, fading horizons,
type that breathes — half-remembered, half-imagined.
</p>
</div>
</div>
<div className="mt-12 pt-8 border-t border-[#3C4845]/10 flex justify-between items-center relative z-10">
<span className="font-mono text-[10px] lowercase tracking-[0.3em] text-[#8A9894] group-hover:text-[#5F837B] transition-colors">
drift_in
</span>
<ArrowRightIcon
className="text-[#8A9894] group-hover:text-[#5F837B] group-hover:translate-x-2 transition-all"
size={24}
/>
</div>
</motion.div>
</button>
{/* FEZLUXE CARD */}
<Link to="/design/fezluxe" className="group block relative">
<motion.div
whileHover={{ y: -10 }}
className="h-full bg-white border border-black/5 p-12 flex flex-col justify-between rounded-sm overflow-hidden shadow-xl transition-all duration-500"
>
<div className="absolute inset-0 opacity-[0.03] pointer-events-none group-hover:opacity-[0.08] transition-opacity">
<LuxeArt
seed="fezluxe"
className="w-full h-full mix-blend-multiply"
/>
</div>
<div className="space-y-8 relative z-10">
<div className="w-16 h-16 flex items-center justify-center bg-[#F5F5F0] text-[#8D4004] rounded-full shadow-sm group-hover:bg-[#1A1A1A] group-hover:text-white transition-all duration-500">
<SparkleIcon size={32} weight="light" />
</div>
<div className="space-y-4">
<h2 className="text-5xl font-playfairDisplay italic text-[#1A1A1A] leading-none">
Fezluxe
</h2>
<p className="font-outfit text-sm text-black/40 italic leading-relaxed">
Architectural elegance. Generous white space, soft depth,
and sophisticated typographic hierarchy.
</p>
</div>
</div>
<div className="mt-12 pt-8 border-t border-black/5 flex justify-between items-center relative z-10">
<span className="font-outfit text-[10px] uppercase tracking-[0.3em] text-black/30 group-hover:text-[#8D4004] transition-colors">
Explore Archive
</span>
<ArrowRightIcon
className="text-black/20 group-hover:text-[#8D4004] group-hover:translate-x-2 transition-all"
size={24}
/>
</div>
</motion.div>
</Link>
</div>
{/* ── INNER DESIGN LANGUAGES ───────────────────────────────── */}
<div className="mt-32">
<div className="flex items-end justify-between mb-12 pb-6 border-b border-black/10">
<div>
<div className="font-outfit text-[10px] uppercase tracking-[0.3em] text-[#1A1A1A]/40 mb-2">
Part II
</div>
<h2 className="font-playfairDisplay text-4xl md:text-5xl text-[#1A1A1A] leading-none">
Inner Design Languages
</h2>
</div>
<p className="font-outfit text-xs text-[#1A1A1A]/50 max-w-sm leading-relaxed hidden md:block">
Sub-systems used inside specific surfaces — apps, readers, and
project catalogues — each with its own vocabulary.
</p>
</div>
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8 lg:gap-10">
{/* ── ATELIER ── */}
<Link to="/apps/github-thumbnail-generator" className="group block relative">
<motion.div
whileHover={{ y: -10 }}
className="h-full p-12 flex flex-col justify-between overflow-hidden transition-all duration-500 relative"
style={{
background: '#F5EFEC',
borderRadius: 8,
boxShadow:
'0 0 0 1px #B89968 inset, 0 1px 0 rgba(255,255,255,0.5) inset, 0 30px 60px -30px rgba(45,31,46,0.25)',
}}
>
<div
className="absolute inset-0 pointer-events-none opacity-60"
style={{
background:
'radial-gradient(500px 300px at 85% -10%, #E4D9D6 0%, transparent 55%), radial-gradient(400px 400px at -10% 110%, #EDE4E1 0%, transparent 55%)',
}}
/>
<div className="space-y-8 relative z-10">
<div
className="w-16 h-16 flex items-center justify-center transition-all duration-500"
style={{
background: '#3F7D6B14',
color: '#3F7D6B',
borderRadius: 8,
boxShadow: '0 0 0 1px #B89968 inset',
}}
>
<PaintBrushBroadIcon size={32} weight="regular" />
</div>
<div className="space-y-4">
<div
className="text-[10px] uppercase tracking-[0.28em]"
style={{ color: '#6B5A65' }}
>
App Chrome
</div>
<h3
className="text-5xl leading-none tracking-tight"
style={{
fontFamily: "'EB Garamond', serif",
color: '#2D1F2E',
}}
>
Atelier
<span style={{ color: '#3F7D6B' }}>.</span>
</h3>
<p
className="text-sm italic leading-relaxed"
style={{
fontFamily: "'EB Garamond', serif",
color: '#6B5A65',
}}
>
Gallery-studio contemporary. Dusty mauve walls, cream
matted cards, jade as the single jewel accent. Garamond
italic plates.
</p>
</div>
</div>
<div
className="mt-12 pt-8 flex justify-between items-center relative z-10 border-t"
style={{ borderColor: '#C7B8B4' }}
>
<span
className="text-[10px] uppercase tracking-[0.3em] transition-colors"
style={{ color: '#6B5A65' }}
>
Enter_Studio
</span>
<ArrowRightIcon
className="group-hover:translate-x-2 transition-all"
size={24}
style={{ color: '#3F7D6B' }}
/>
</div>
</motion.div>
</Link>
{/* ── GALLEY (terracotta inner reader) ── */}
<Link to="/blog" className="group block relative">
<motion.div
whileHover={{ y: -10 }}
className="h-full p-12 flex flex-col justify-between overflow-hidden transition-all duration-500 relative"
style={{
background: '#F3ECE0',
borderRadius: 4,
boxShadow:
'0 0 0 1px #1A161320 inset, 0 30px 60px -30px #1A161330',
}}
>
<div
className="absolute inset-0 pointer-events-none"
style={{
backgroundImage:
'repeating-linear-gradient(0deg, #1A161308 0 1px, transparent 1px 4px)',
opacity: 0.4,
}}
/>
<div className="space-y-8 relative z-10">
<div
className="w-16 h-16 flex items-center justify-center transition-all duration-500"
style={{
background: '#C9644215',
color: '#9E4A2F',
borderRadius: 2,
border: '1px solid #C9644240',
}}
>
<ScrollIcon size={32} weight="light" />
</div>
<div className="space-y-4">
<div
className="text-[10px] uppercase tracking-[0.28em]"
style={{
color: '#2E2620',
fontFamily: "'IBM Plex Mono', monospace",
}}
>
Terracotta · Reader
</div>
<h3
className="text-5xl italic leading-none tracking-tight"
style={{
fontFamily: "'Fraunces', serif",
color: '#1A1613',
}}
>
Galley
</h3>
<p
className="text-xs uppercase tracking-widest leading-relaxed"
style={{
color: '#2E2620',
fontFamily: "'IBM Plex Mono', monospace",
opacity: 0.7,
}}
>
A letterpress galley-proof for long reading. Registration
marks, drop-caps, and 38em measure — enable from settings.
</p>
</div>
</div>
<div
className="mt-12 pt-8 flex justify-between items-center relative z-10 border-t"
style={{ borderColor: '#1A161320' }}
>
<span
className="text-[10px] uppercase tracking-[0.3em]"
style={{
color: '#2E2620',
fontFamily: "'IBM Plex Mono', monospace",
opacity: 0.6,
}}
>
Open_Proof
</span>
<ArrowRightIcon
className="group-hover:translate-x-2 transition-all"
size={24}
style={{ color: '#C96442' }}
/>
</div>
</motion.div>
</Link>
{/* ── ATLAS (terracotta inner catalog) ── */}
<Link to="/projects/atlas-projects" className="group block relative">
<motion.div
whileHover={{ y: -10 }}
className="h-full p-12 flex flex-col justify-between overflow-hidden transition-all duration-500 relative"
style={{
background: '#0A0906',
borderRadius: 4,
boxShadow:
'inset 0 0 0 1px #FFB00020, 0 30px 60px -30px rgba(0,0,0,0.5)',
}}
>
<div
className="absolute inset-0 pointer-events-none opacity-30"
style={{
backgroundImage:
'linear-gradient(#FFB00012 1px, transparent 1px), linear-gradient(90deg, #FFB00012 1px, transparent 1px)',
backgroundSize: '24px 24px',
}}
/>
<div className="space-y-8 relative z-10">
<div
className="w-16 h-16 flex items-center justify-center transition-all duration-500"
style={{
background: '#FFB00010',
color: '#FFB000',
borderRadius: 2,
border: '1px solid #FFB00040',
}}
>
<TerminalWindowIcon size={32} weight="regular" />
</div>
<div className="space-y-4">
<div
className="text-[10px] uppercase tracking-[0.28em]"
style={{
color: '#9AAF4F',
fontFamily: "'JetBrains Mono', monospace",
}}
>
Terracotta · Catalog
</div>
<h3
className="text-5xl leading-none tracking-tight uppercase font-bold"
style={{
fontFamily: "'JetBrains Mono', monospace",
color: '#FFB000',
}}
>
Atlas
</h3>
<p
className="text-xs uppercase tracking-widest leading-relaxed"
style={{
color: '#E8DBB7',
fontFamily: "'JetBrains Mono', monospace",
opacity: 0.8,
}}
>
Phosphor-amber CRT tool-catalog. 38 entries, 9 categories,
boot sequence, clipboard installers — pure terminal
instrument.
</p>
</div>
</div>
<div
className="mt-12 pt-8 flex justify-between items-center relative z-10 border-t"
style={{ borderColor: '#FFB00020' }}
>
<span
className="text-[10px] uppercase tracking-[0.3em]"
style={{
color: '#9AAF4F',
fontFamily: "'JetBrains Mono', monospace",
}}
>
$ ./boot.sh
</span>
<ArrowRightIcon
className="group-hover:translate-x-2 transition-all"
size={24}
style={{ color: '#FFB000' }}
/>
</div>
</motion.div>
</Link>
{/* ── HERBARIUM ── */}
<Link to="/apps/fractal-flora" className="group block relative">
<motion.div
whileHover={{ y: -10 }}
className="h-full p-12 flex flex-col justify-between overflow-hidden transition-all duration-500 relative"
style={{
background: '#F0E9D9',
borderRadius: 2,
boxShadow:
'0 0 0 1px rgba(30,58,43,0.2) inset, 0 30px 60px -30px rgba(30,58,43,0.3)',
}}
>
{/* rust corner pins */}
{['tl','tr','bl','br'].map((c) => {
const pos = {
tl: { top: 10, left: 10 },
tr: { top: 10, right: 10 },
bl: { bottom: 10, left: 10 },
br: { bottom: 10, right: 10 },
}[c];
return (
<span
key={c}
aria-hidden
className="absolute w-2.5 h-2.5 rounded-full z-20"
style={{
...pos,
background:
'radial-gradient(circle at 35% 35%, #E38866 0%, #A65B3A 50%, #8B4A2D 100%)',
boxShadow:
'0 2px 3px rgba(30,58,43,0.3), inset 0 1px 1px rgba(255,255,255,0.3)',
}}
/>
);
})}
{/* fern silhouette watermark */}
<svg
viewBox="0 0 200 640"
className="absolute pointer-events-none"
style={{
top: 10,
right: -40,
width: 180,
color: '#2E5E3B',
opacity: 0.09,
zIndex: 0,
}}
aria-hidden
>
<path
d="M100 10 Q 94 220, 98 580 Q 100 610, 96 628"
stroke="currentColor"
strokeWidth="1.5"
fill="none"
strokeLinecap="round"
/>
{Array.from({ length: 14 }).map((_, i) => {
const y = 36 + i * ((580 - 36) / 14);
const size = 68 - i * (58 / 14);
const droop = 8 + i * 0.4;
return (
<g key={i}>
<path
d={`M98 ${y} Q ${98 - size * 0.55} ${y + droop * 0.3}, ${98 - size} ${y + droop} Q ${98 - size * 0.7} ${y - droop * 0.6}, 98 ${y}`}
fill="currentColor"
/>
<path
d={`M98 ${y} Q ${98 + size * 0.55} ${y + droop * 0.3}, ${98 + size} ${y + droop} Q ${98 + size * 0.7} ${y - droop * 0.6}, 98 ${y}`}
fill="currentColor"
/>
</g>
);
})}
</svg>
<div className="space-y-8 relative z-10">
<div
className="w-16 h-16 flex items-center justify-center transition-all duration-500"
style={{
background: 'rgba(166,91,58,0.08)',
color: '#2E5E3B',
borderRadius: 2,
border: '1px solid rgba(30,58,43,0.2)',
}}
>
<PlantIcon size={32} weight="regular" />
</div>
<div className="space-y-4">
<div
className="inline-flex items-center gap-2 px-2.5 py-1 text-[9px] uppercase tracking-[0.28em] font-bold"
style={{
background: '#A65B3A',
color: '#F0E9D9',
fontFamily: "'Space Mono', monospace",
}}
>
Pressed · Mounted
</div>
<h3
className="text-5xl italic leading-none tracking-tight"
style={{
fontFamily: "'Playfair Display', serif",
color: '#1E3A2B',
}}
>
Herbarium
</h3>
<p
className="text-sm italic leading-relaxed"
style={{
fontFamily: "'Playfair Display', 'EB Garamond', serif",
color: '#6B4423',
}}
>
A naturalist's pressed-specimen atlas. Ecru paper, rust
pins, twine-tied taxonomic labels, Latin binomials.
</p>
</div>
</div>
<div
className="mt-12 pt-8 flex justify-between items-center relative z-10 border-t"
style={{ borderColor: 'rgba(30,58,43,0.2)' }}
>
<span
className="text-[10px] uppercase tracking-[0.3em]"
style={{
color: '#3E5A4A',
fontFamily: "'Space Mono', monospace",
}}
>
Hortus_Digitalis
</span>
<ArrowRightIcon
className="group-hover:translate-x-2 transition-all"
size={24}
style={{ color: '#A65B3A' }}
/>
</div>
</motion.div>
</Link>
{/* ── WORKBENCH · LIGHT ── */}
<Link to="/apps/quote-generator" className="group block relative">
<motion.div
whileHover={{ y: -10 }}
className="h-full p-12 flex flex-col justify-between overflow-hidden transition-all duration-500 relative"
style={{
background: '#FAF7F0',
borderRadius: 14,
boxShadow:
'inset 0 0 0 1px rgba(25,23,22,0.08), 0 30px 60px -30px rgba(25,23,22,0.18)',
}}
>
<div
className="absolute inset-0 pointer-events-none"
style={{
background:
'radial-gradient(60% 40% at 50% 0%, rgba(196,100,58,0.08), transparent 65%)',
}}
/>
<div
className="absolute inset-0 pointer-events-none"
style={{
backgroundImage:
'radial-gradient(circle at 30% 30%, rgba(25,23,22,0.025) 1px, transparent 1px)',
backgroundSize: '3px 3px',
opacity: 0.6,
}}
/>
<div className="space-y-8 relative z-10">
<div
className="w-14 h-14 flex items-center justify-center"
style={{
background: 'rgba(196,100,58,0.12)',
color: '#C4643A',
borderRadius: 10,
border: '1px solid rgba(196,100,58,0.3)',
}}
>
<TerminalIcon size={26} weight="regular" />
</div>
<div className="space-y-4">
<div
className="text-[10px] flex items-center gap-2"
style={{
color: '#6B6A65',
fontFamily: "'JetBrains Mono', monospace",
letterSpacing: '0.08em',
}}
>
<span
className="h-1.5 w-1.5 rounded-full"
style={{ background: '#C4643A' }}
/>
<span>light · v2026.1</span>
</div>
<h3
className="leading-none tracking-[-0.01em]"
style={{
fontFamily: "'Fraunces', serif",
fontVariationSettings: "'opsz' 72, 'SOFT' 0, 'WONK' 0",
color: '#1A1918',
fontSize: 52,
fontWeight: 400,
}}
>
Workbench
</h3>
<p
className="text-sm leading-relaxed"
style={{
fontFamily: "'Instrument Sans', sans-serif",
color: '#6B6A65',
}}
>
Calm 2026 light dev-tool aesthetic — warm cream canvas,
muted terracotta accent, Fraunces and Instrument Sans.
Applied to the quote composer.
</p>
</div>
</div>
<div
className="mt-12 pt-8 flex justify-between items-center relative z-10"
style={{ borderTop: '1px solid rgba(25,23,22,0.08)' }}
>
<span
className="text-[10px] flex items-center gap-2"
style={{
color: '#C4643A',
fontFamily: "'JetBrains Mono', monospace",
letterSpacing: '0.1em',
}}
>
open composer
</span>
<ArrowRightIcon
className="group-hover:translate-x-2 transition-all"
size={22}
style={{ color: '#C4643A' }}
/>
</div>
</motion.div>
</Link>
{/* ── WORKBENCH · DARK ── */}
<Link to="/apps/pattern-generator" className="group block relative">
<motion.div
whileHover={{ y: -10 }}
className="h-full p-12 flex flex-col justify-between overflow-hidden transition-all duration-500 relative"
style={{
background: '#0F0F10',
borderRadius: 14,
boxShadow:
'inset 0 0 0 1px rgba(239,236,228,0.08), 0 30px 60px -30px rgba(0,0,0,0.6)',
}}
>
<div
className="absolute inset-0 pointer-events-none"
style={{
background:
'radial-gradient(60% 40% at 50% 0%, rgba(196,100,58,0.08), transparent 65%)',
}}
/>
<div
className="absolute inset-0 pointer-events-none"
style={{
backgroundImage:
'radial-gradient(circle at 30% 30%, rgba(239,236,228,0.02) 1px, transparent 1px)',
backgroundSize: '3px 3px',
opacity: 0.6,
}}
/>
<div className="space-y-8 relative z-10">
<div
className="w-14 h-14 flex items-center justify-center"
style={{
background: 'rgba(196,100,58,0.12)',
color: '#C4643A',
borderRadius: 10,
border: '1px solid rgba(196,100,58,0.3)',
}}
>
<TerminalIcon size={26} weight="regular" />
</div>
<div className="space-y-4">
<div
className="text-[10px] flex items-center gap-2"
style={{
color: '#A8A49B',
fontFamily: "'JetBrains Mono', monospace",
letterSpacing: '0.08em',
}}
>
<span
className="h-1.5 w-1.5 rounded-full"
style={{ background: '#C4643A' }}
/>
<span>dark · v2026.1</span>
</div>
<h3
className="leading-none tracking-[-0.01em]"
style={{
fontFamily: "'Fraunces', serif",
fontVariationSettings: "'opsz' 72, 'SOFT' 0, 'WONK' 0",
color: '#EFECE4',
fontSize: 52,
fontWeight: 400,
}}
>
Workbench
</h3>
<p
className="text-sm leading-relaxed"
style={{
fontFamily: "'Instrument Sans', sans-serif",
color: '#A8A49B',
}}
>
Same Workbench vocabulary after hours — warm near-black
canvas, cream ink, the same terracotta accent. Applied
to the pattern generator.
</p>
</div>
</div>
<div
className="mt-12 pt-8 flex justify-between items-center relative z-10"
style={{ borderTop: '1px solid rgba(239,236,228,0.08)' }}
>
<span
className="text-[10px] flex items-center gap-2"
style={{
color: '#C4643A',
fontFamily: "'JetBrains Mono', monospace",
letterSpacing: '0.1em',
}}
>
open pattern lab
</span>
<ArrowRightIcon
className="group-hover:translate-x-2 transition-all"
size={22}
style={{ color: '#C4643A' }}
/>
</div>
</motion.div>
</Link>
</div>
</div>
<footer className="mt-24 pt-12 border-t border-black/10 flex flex-col md:flex-row justify-between items-center gap-6 text-black/30 font-outfit text-[10px] uppercase tracking-[0.3em]">
<div className="flex items-center gap-2">
<LayoutIcon size={14} />
<span>Quad Theme Protocol Alpha</span>
</div>
<span>Fezcodex Studio — 2026</span>
</footer>
</div>
</div>
);
};
export default DesignSelectionPage;