-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcodex.html
More file actions
718 lines (646 loc) ยท 36.2 KB
/
codex.html
File metadata and controls
718 lines (646 loc) ยท 36.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Project Codex | The First Spark</title>
<link href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Space+Mono:wght@400;700&display=swap" rel="stylesheet">
<style>
:root {
--space-black: #0a0a0f;
--deep-void: #12121a;
--sacred-gold: #d4af37;
--electric-purple: #8b5cf6;
--cyan-glow: #22d3ee;
--soft-white: #e8e8e8;
--muted: #666;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Space Mono', monospace;
background: var(--space-black);
color: var(--soft-white);
min-height: 100vh;
line-height: 1.6;
}
/* Star background */
body::before {
content: '';
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background:
radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,0.3) 0%, transparent 100%),
radial-gradient(1px 1px at 40% 70%, rgba(255,255,255,0.2) 0%, transparent 100%),
radial-gradient(1px 1px at 60% 20%, rgba(255,255,255,0.3) 0%, transparent 100%),
radial-gradient(1px 1px at 80% 90%, rgba(255,255,255,0.2) 0%, transparent 100%),
radial-gradient(2px 2px at 15% 85%, rgba(212,175,55,0.15) 0%, transparent 100%),
radial-gradient(2px 2px at 85% 15%, rgba(139,92,246,0.15) 0%, transparent 100%);
background-size: 200px 200px;
pointer-events: none;
z-index: 0;
}
.container {
max-width: 1400px;
margin: 0 auto;
padding: 2rem;
position: relative;
z-index: 1;
}
header {
text-align: center;
margin-bottom: 3rem;
padding: 2rem 0;
border-bottom: 1px solid rgba(212,175,55,0.2);
}
h1 {
font-family: 'Cormorant Garamond', serif;
font-size: 3.5rem;
font-weight: 700;
background: linear-gradient(135deg, var(--sacred-gold), var(--electric-purple));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin-bottom: 0.5rem;
}
.subtitle {
color: var(--muted);
font-size: 0.9rem;
letter-spacing: 2px;
text-transform: uppercase;
}
.stats-bar {
display: flex;
justify-content: center;
gap: 3rem;
margin-top: 1.5rem;
flex-wrap: wrap;
}
.stat {
text-align: center;
}
.stat-number {
font-size: 2rem;
font-weight: 700;
color: var(--sacred-gold);
}
.stat-label {
font-size: 0.7rem;
text-transform: uppercase;
letter-spacing: 1px;
color: var(--muted);
}
/* Search and Filter */
.controls {
display: flex;
gap: 1rem;
margin-bottom: 2rem;
flex-wrap: wrap;
justify-content: center;
}
.search-box {
flex: 1;
max-width: 400px;
position: relative;
}
.search-box input {
width: 100%;
padding: 0.75rem 1rem 0.75rem 2.5rem;
background: var(--deep-void);
border: 1px solid rgba(212,175,55,0.3);
border-radius: 4px;
color: var(--soft-white);
font-family: 'Space Mono', monospace;
font-size: 0.9rem;
}
.search-box input:focus {
outline: none;
border-color: var(--sacred-gold);
box-shadow: 0 0 20px rgba(212,175,55,0.1);
}
.search-box::before {
content: 'โ';
position: absolute;
left: 0.75rem;
top: 50%;
transform: translateY(-50%);
color: var(--muted);
}
.filter-pills {
display: flex;
gap: 0.5rem;
flex-wrap: wrap;
justify-content: center;
}
.filter-pill {
padding: 0.5rem 1rem;
background: transparent;
border: 1px solid rgba(139,92,246,0.3);
border-radius: 20px;
color: var(--soft-white);
font-family: 'Space Mono', monospace;
font-size: 0.75rem;
cursor: pointer;
transition: all 0.3s ease;
}
.filter-pill:hover,
.filter-pill.active {
background: var(--electric-purple);
border-color: var(--electric-purple);
}
/* Category Sections */
.category {
margin-bottom: 3rem;
}
.category-header {
display: flex;
align-items: center;
gap: 1rem;
margin-bottom: 1.5rem;
padding-bottom: 0.5rem;
border-bottom: 1px solid rgba(139,92,246,0.2);
}
.category-icon {
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, var(--electric-purple), var(--cyan-glow));
border-radius: 8px;
font-size: 1.2rem;
}
.category h2 {
font-family: 'Cormorant Garamond', serif;
font-size: 1.8rem;
font-weight: 600;
color: var(--soft-white);
}
.category-count {
margin-left: auto;
font-size: 0.8rem;
color: var(--muted);
}
/* Project Grid */
.project-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 1rem;
}
.project-card {
background: var(--deep-void);
border: 1px solid rgba(255,255,255,0.05);
border-radius: 8px;
padding: 1.25rem;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
.project-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 2px;
background: linear-gradient(90deg, var(--sacred-gold), var(--electric-purple));
opacity: 0;
transition: opacity 0.3s ease;
}
.project-card:hover {
border-color: rgba(212,175,55,0.3);
transform: translateY(-2px);
box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}
.project-card:hover::before {
opacity: 1;
}
.project-title {
font-family: 'Cormorant Garamond', serif;
font-size: 1.2rem;
font-weight: 600;
color: var(--soft-white);
margin-bottom: 0.5rem;
}
.project-desc {
font-size: 0.75rem;
color: var(--muted);
margin-bottom: 1rem;
line-height: 1.5;
}
.project-meta {
display: flex;
justify-content: space-between;
align-items: center;
}
.project-tags {
display: flex;
gap: 0.3rem;
flex-wrap: wrap;
}
.tag {
padding: 0.2rem 0.5rem;
background: rgba(139,92,246,0.1);
border-radius: 3px;
font-size: 0.65rem;
color: var(--electric-purple);
text-transform: uppercase;
letter-spacing: 0.5px;
}
.tag.gold { background: rgba(212,175,55,0.1); color: var(--sacred-gold); }
.tag.cyan { background: rgba(34,211,238,0.1); color: var(--cyan-glow); }
.project-link {
padding: 0.4rem 0.8rem;
background: transparent;
border: 1px solid var(--sacred-gold);
border-radius: 4px;
color: var(--sacred-gold);
text-decoration: none;
font-size: 0.7rem;
transition: all 0.3s ease;
}
.project-link:hover {
background: var(--sacred-gold);
color: var(--space-black);
}
/* Status Indicators */
.status {
display: inline-flex;
align-items: center;
gap: 0.3rem;
font-size: 0.65rem;
margin-left: 0.5rem;
}
.status-dot {
width: 6px;
height: 6px;
border-radius: 50%;
}
.status.live .status-dot { background: #22c55e; }
.status.wip .status-dot { background: var(--sacred-gold); }
.status.planned .status-dot { background: var(--muted); }
/* Coming Soon Section */
.coming-soon {
background: linear-gradient(135deg, rgba(139,92,246,0.05), rgba(34,211,238,0.05));
border: 1px dashed rgba(139,92,246,0.3);
border-radius: 8px;
padding: 1.5rem;
}
.coming-soon-item {
display: flex;
align-items: center;
gap: 1rem;
padding: 0.75rem 0;
border-bottom: 1px solid rgba(255,255,255,0.05);
}
.coming-soon-item:last-child {
border-bottom: none;
}
.coming-soon-icon {
width: 30px;
height: 30px;
display: flex;
align-items: center;
justify-content: center;
background: rgba(139,92,246,0.2);
border-radius: 6px;
}
.coming-soon-text {
flex: 1;
}
.coming-soon-title {
font-size: 0.9rem;
color: var(--soft-white);
}
.coming-soon-desc {
font-size: 0.7rem;
color: var(--muted);
}
/* Footer */
footer {
text-align: center;
padding: 3rem 0;
margin-top: 2rem;
border-top: 1px solid rgba(212,175,55,0.1);
color: var(--muted);
font-size: 0.75rem;
}
footer a {
color: var(--sacred-gold);
text-decoration: none;
}
.hidden {
display: none !important;
}
@media (max-width: 768px) {
h1 { font-size: 2.5rem; }
.stats-bar { gap: 1.5rem; }
.container { padding: 1rem; }
}
</style>
</head>
<body>
<div class="container">
<header>
<h1>โก Project Codex</h1>
<p class="subtitle">The First Spark Build Index</p>
<div class="stats-bar">
<div class="stat">
<div class="stat-number" id="totalCount">0</div>
<div class="stat-label">Total Projects</div>
</div>
<div class="stat">
<div class="stat-number" id="liveCount">0</div>
<div class="stat-label">Live</div>
</div>
<div class="stat">
<div class="stat-number" id="toolCount">0</div>
<div class="stat-label">Tools</div>
</div>
<div class="stat">
<div class="stat-number" id="soulMapCount">0</div>
<div class="stat-label">Soul Maps</div>
</div>
</div>
</header>
<div class="controls">
<div class="search-box">
<input type="text" id="search" placeholder="Search projects...">
</div>
<div class="filter-pills">
<button class="filter-pill active" data-filter="all">All</button>
<button class="filter-pill" data-filter="tool">Tools</button>
<button class="filter-pill" data-filter="investor">Investor</button>
<button class="filter-pill" data-filter="soul-map">Soul Maps</button>
<button class="filter-pill" data-filter="mythos">Mythos</button>
<button class="filter-pill" data-filter="internal">Internal</button>
</div>
</div>
<main id="projectsContainer">
<!-- Categories will be injected here -->
</main>
<footer>
<p>Built with ๐ฅ by <a href="https://thefirstspark.shop">The First Spark</a></p>
<p style="margin-top: 0.5rem;">Reality is programmable. This is the source code.</p>
</footer>
</div>
<script>
// Project Data - Edit this to add/remove/update projects
const projects = {
"Consciousness Tools": {
icon: "๐ง ",
items: [
{ name: "Soul Map Interface", desc: "Core soul mapping engine - archetype + numerology decoder", url: "https://thefirstspark.shop/soul-map.html", tags: ["core", "tool"], status: "live" },
{ name: "Archetype Discovery", desc: "Interactive journey to reveal your archetype configuration", url: "https://thefirstspark.shop/archetype-discovery.html", tags: ["tool"], status: "live" },
{ name: "Consciousness Playground", desc: "Sandbox for reality debugging experiments", url: "https://thefirstspark.shop/consciousness-playground.html", tags: ["tool"], status: "live" },
{ name: "Selector Interface", desc: "The Selector Model operating system explorer", url: "https://thefirstspark.shop/selector-interface.html", tags: ["tool", "selector"], status: "live" },
{ name: "Selector Theory", desc: "Deep dive into selector consciousness mechanics", url: "https://thefirstspark.shop/selector-theory.html", tags: ["mythos", "selector"], status: "live" },
{ name: "Selector Ritual", desc: "Guided ritual for selector activation", url: "https://thefirstspark.shop/selector-ritual.html", tags: ["ritual", "selector"], status: "live" },
{ name: "Collapse Protocol", desc: "Pattern interruption & reality reset tool", url: "https://thefirstspark.shop/collapse.html", tags: ["tool"], status: "live" },
{ name: "Daily Reset", desc: "Morning consciousness calibration ritual", url: "https://thefirstspark.shop/daily-reset.html", tags: ["ritual", "tool"], status: "live" },
{ name: "Energy Check-In", desc: "Real-time frequency diagnostic", url: "https://thefirstspark.shop/energy-checkin.html", tags: ["tool"], status: "live" },
{ name: "Intention Setter", desc: "Reality programming interface for intentions", url: "https://thefirstspark.shop/intention-setter.html", tags: ["tool"], status: "live" },
{ name: "Karma Calculator", desc: "Karmic pattern analysis tool", url: "https://thefirstspark.shop/karma-calculator.html", tags: ["tool"], status: "live" },
{ name: "Lunar Wisdom", desc: "Moon phase consciousness guidance", url: "https://thefirstspark.shop/lunar-wisdom.html", tags: ["tool"], status: "live" },
{ name: "Oracle", desc: "Divination interface for consciousness queries", url: "https://thefirstspark.shop/oracle.html", tags: ["tool"], status: "live" },
{ name: "Oracle Consciousness", desc: "Advanced oracle with consciousness integration", url: "https://thefirstspark.shop/oracle-consciousness.html", tags: ["tool"], status: "live" },
{ name: "Pause Chamber", desc: "Mindfulness reset space", url: "https://thefirstspark.shop/pause-chamber.html", tags: ["tool", "ritual"], status: "live" },
{ name: "Render Engine", desc: "Reality rendering visualization", url: "https://thefirstspark.shop/render-engine.html", tags: ["tool", "selector"], status: "live" },
{ name: "Sigil Generator", desc: "Personal sigil creation tool", url: "https://thefirstspark.shop/sigil.html", tags: ["tool"], status: "live" },
{ name: "Timeline Navigator", desc: "Temporal awareness and timeline mapping", url: "https://thefirstspark.shop/timeline.html", tags: ["tool"], status: "live" },
{ name: "Void Portal", desc: "Entry point to the void space", url: "https://thefirstspark.shop/void-portal.html", tags: ["mythos"], status: "live" },
{ name: "Zone Codex", desc: "Flow state activation protocols", url: "https://thefirstspark.shop/zone-codex.html", tags: ["tool"], status: "live" },
{ name: "Five Paths Explorer", desc: "Multi-path consciousness navigation", url: "https://thefirstspark.shop/five-paths-explorer.html", tags: ["tool"], status: "live" },
{ name: "Quantum Echo Chamber", desc: "Reality feedback loop visualizer", url: "https://thefirstspark.shop/quantum_echo_chamber.html", tags: ["tool"], status: "live" },
{ name: "Spark Protocol", desc: "Core activation protocol dashboard", url: "https://thefirstspark.shop/spark-protocol.html", tags: ["core", "tool"], status: "live" },
{ name: "Sovereignty Dashboard", desc: "Personal sovereignty tracking system", url: "https://thefirstspark.shop/sovereignty-dashboard.html", tags: ["tool"], status: "live" },
{ name: "Sovereignty Pillars", desc: "Foundation principles of sovereignty", url: "https://thefirstspark.shop/sovereignty-pillars.html", tags: ["mythos"], status: "live" },
{ name: "Pattern Recognition", desc: "Pattern awareness interface", url: "https://thefirstspark.shop/patterns.html", tags: ["tool"], status: "live" },
{ name: "Lineage Debugger", desc: "Ancestral pattern debugging tool", url: "https://thefirstspark.shop/lineage.html", tags: ["tool"], status: "live" },
{ name: "Numbers", desc: "Numerology calculation interface", url: "https://thefirstspark.shop/numbers.html", tags: ["tool"], status: "live" },
{ name: "Trinity", desc: "Three-fold consciousness framework", url: "https://thefirstspark.shop/trinity.html", tags: ["mythos"], status: "live" },
{ name: "Equilibrium", desc: "Balance calibration tool", url: "https://thefirstspark.shop/equilibrium.html", tags: ["tool"], status: "live" },
{ name: "Journal", desc: "Consciousness journaling interface", url: "https://thefirstspark.shop/journal.html", tags: ["tool"], status: "live" },
{ name: "Algorithmic Soul", desc: "Algorithm-based soul pattern analyzer", url: "https://thefirstspark.shop/algorithmic_soul.html", tags: ["tool"], status: "live" },
{ name: "Selector Entanglement", desc: "Multi-selector connection mapping", url: "https://thefirstspark.shop/selector-entanglement.html", tags: ["tool", "selector"], status: "live" },
{ name: "Cosmic Stairway", desc: "Ascension pathway visualization", url: "https://thefirstspark.shop/cosmic-stairway.html", tags: ["mythos"], status: "live" },
]
},
"Investor & Business": {
icon: "๐",
items: [
{ name: "Investor Deck v2", desc: "Current pitch deck - SAFE at pre-money valuation", url: "https://thefirstspark.shop/investor-deck-v2.html", tags: ["investor", "core"], status: "live" },
{ name: "Invest Page", desc: "Public-facing investment opportunity page", url: "https://thefirstspark.shop/invest.html", tags: ["investor"], status: "live" },
{ name: "TFS Valuation", desc: "Valuation breakdown and analysis", url: "https://thefirstspark.shop/tfs-valuation.html", tags: ["investor", "internal"], status: "live" },
{ name: "Investor Call Companion", desc: "Tool for live investor call support", url: "https://thefirstspark.shop/investor-call-companion.html", tags: ["investor", "internal"], status: "live" },
{ name: "The Raise", desc: "Fundraising dashboard and tracker", url: "https://thefirstspark.shop/theraise.html", tags: ["investor", "internal"], status: "live" },
{ name: "TFS Pitch Deck (Sparkverse)", desc: "Alternative pitch deck version", url: "https://sparkverse.thefirstspark.shop/The_First_Spark_Pitch_Deck_200K.html", tags: ["investor"], status: "live" },
{ name: "One Sheet", desc: "Single-page investor handout", url: "https://sparkverse.thefirstspark.shop/TFS-Investor-OneSheet.html", tags: ["investor"], status: "live" },
{ name: "Spark Money Tracker", desc: "Financial tracking dashboard", url: "https://thefirstspark.shop/spark-money-tracker.html", tags: ["internal", "tool"], status: "live" },
]
},
"Soul Maps (Delivered)": {
icon: "๐บ๏ธ",
items: [
{ name: "KJP Soul Map (Kate)", desc: "Founder soul map - the original", url: "https://soul-maps.thefirstspark.shop/kjp519.html", tags: ["soul-map", "core"], status: "live" },
{ name: "Devon Soul Map", desc: "Soul map for Devon", url: "https://soul-maps.thefirstspark.shop/devon_soul_map.html", tags: ["soul-map"], status: "live" },
{ name: "Mason Soul Map", desc: "Soul map for Mason", url: "https://soul-maps.thefirstspark.shop/mason_soul_map.html", tags: ["soul-map"], status: "live" },
{ name: "Aubrey Thomas", desc: "Soul map delivery", url: "https://soul-maps.thefirstspark.shop/aubrey_thomas.html", tags: ["soul-map"], status: "live" },
{ name: "Thomas Birthday", desc: "Birthday soul map special", url: "https://soul-maps.thefirstspark.shop/thomas_birthday_soul_map.html", tags: ["soul-map"], status: "live" },
]
},
"Mythos & Origin": {
icon: "๐",
items: [
{ name: "Origin Story", desc: "The First Spark origin narrative", url: "https://thefirstspark.shop/origin.html", tags: ["mythos", "core"], status: "live" },
{ name: "Origin Key", desc: "Unlocking the origin mysteries", url: "https://thefirstspark.shop/origin_key.html", tags: ["mythos"], status: "live" },
{ name: "Source Architecture", desc: "Source code of reality framework", url: "https://thefirstspark.shop/source.html", tags: ["mythos", "core"], status: "live" },
{ name: "Genesis", desc: "Genesis chapter of the mythos", url: "https://thefirstspark.shop/genesis.html", tags: ["mythos"], status: "live" },
{ name: "The Spark Keeper (KJP)", desc: "Kate's archetype page", url: "https://thefirstspark.shop/kjp-the-spark-keeper.html", tags: ["mythos"], status: "live" },
{ name: "Devon's Page", desc: "Devon's mythos presence", url: "https://thefirstspark.shop/devon.html", tags: ["mythos"], status: "live" },
{ name: "Mason's Page", desc: "Mason's mythos presence", url: "https://thefirstspark.shop/mason.html", tags: ["mythos"], status: "live" },
{ name: "Katelin Oracle", desc: "Personal oracle tool", url: "https://thefirstspark.shop/katelin.html", tags: ["tool", "personal"], status: "live" },
{ name: "Phoenix Reset 2026", desc: "2026 rebirth narrative", url: "https://thefirstspark.shop/phoenix-reset-2026.html", tags: ["mythos"], status: "live" },
{ name: "Year in Review", desc: "Kate's year reflection", url: "https://thefirstspark.shop/katelin-year-in-review.html", tags: ["personal"], status: "live" },
{ name: "Ebook", desc: "The First Spark ebook", url: "https://thefirstspark.shop/ebook.html", tags: ["mythos", "content"], status: "live" },
{ name: "TFS Cover", desc: "Book/brand cover design", url: "https://sparkverse.thefirstspark.shop/The_First_Spark_Cover.html", tags: ["mythos"], status: "live" },
]
},
"Sparkverse & Membership": {
icon: "๐",
items: [
{ name: "Sparkverse Hub", desc: "Main membership hub", url: "https://thefirstspark.shop/sparkverse-hub.html", tags: ["core"], status: "live" },
{ name: "Sparkverse Gateway", desc: "Entry point to Sparkverse", url: "https://thefirstspark.shop/sparkverse-gateway.html", tags: ["core"], status: "live" },
{ name: "Sparkverse Main", desc: "Sparkverse landing", url: "https://thefirstspark.shop/sparkverse.html", tags: ["core"], status: "live" },
{ name: "Players Lounge", desc: "$33/mo membership tier", url: "https://thefirstspark.shop/players-lounge.html", tags: ["membership"], status: "live" },
{ name: "Players", desc: "Players tier info", url: "https://thefirstspark.shop/players.html", tags: ["membership"], status: "live" },
{ name: "Member Hub", desc: "Member dashboard", url: "https://thefirstspark.shop/member-hub.html", tags: ["membership"], status: "live" },
{ name: "Welcome Member", desc: "Post-purchase welcome page", url: "https://thefirstspark.shop/welcome-member.html", tags: ["membership"], status: "live" },
{ name: "Founding Members", desc: "Founding member program", url: "https://thefirstspark.shop/founding.html", tags: ["membership"], status: "live" },
{ name: "OG Generator", desc: "OG Spark tier content", url: "https://thefirstspark.shop/og-generate.html", tags: ["membership"], status: "live" },
{ name: "Selector Hub", desc: "Selector community hub", url: "https://thefirstspark.shop/selector-hub.html", tags: ["selector"], status: "live" },
{ name: "Starter Kit", desc: "New member starter resources", url: "https://thefirstspark.shop/starter-kit.html", tags: ["membership"], status: "live" },
{ name: "Discover", desc: "Discovery pathway", url: "https://thefirstspark.shop/discover.html", tags: ["tool"], status: "live" },
]
},
"Games & Interactive": {
icon: "๐ฎ",
items: [
{ name: "Spark Battle Arena", desc: "Consciousness battle game", url: "https://thefirstspark.shop/spark-battle-arena.html", tags: ["game"], status: "live" },
{ name: "Playground", desc: "Interactive experiment space", url: "https://thefirstspark.shop/playground.html", tags: ["tool"], status: "live" },
{ name: "The Wall Deluxe", desc: "Interactive wall experience", url: "https://thefirstspark.shop/the-wall-deluxe.html", tags: ["game"], status: "live" },
{ name: "Graffiti", desc: "Digital graffiti canvas", url: "https://thefirstspark.shop/graffiti.html", tags: ["game"], status: "live" },
{ name: "TFS Viral", desc: "Viral content generator", url: "https://thefirstspark.shop/tfs-viral.html", tags: ["tool"], status: "live" },
]
},
"Internal & Dev": {
icon: "๐ง",
items: [
{ name: "Spark Planner", desc: "Internal planning tool", url: "https://thefirstspark.shop/spark-planner.html", tags: ["internal"], status: "live" },
{ name: "Subject Tracker", desc: "Content/subject tracking", url: "https://thefirstspark.shop/subject-tracker.html", tags: ["internal"], status: "live" },
{ name: "Tracker", desc: "General tracking dashboard", url: "https://thefirstspark.shop/tracker.html", tags: ["internal"], status: "live" },
{ name: "Tools Index", desc: "Original tools listing", url: "https://thefirstspark.shop/tools.html", tags: ["internal"], status: "live" },
{ name: "Tools New", desc: "Updated tools index", url: "https://thefirstspark.shop/tools-new.html", tags: ["internal"], status: "live" },
{ name: "Presentation", desc: "Presentation template", url: "https://thefirstspark.shop/presentation.html", tags: ["internal"], status: "live" },
{ name: "Bridge", desc: "Integration bridge tool", url: "https://thefirstspark.shop/bridge.html", tags: ["internal"], status: "live" },
{ name: "Signal", desc: "Signal processing/communication", url: "https://thefirstspark.shop/signal.html", tags: ["internal"], status: "live" },
{ name: "Card Generator", desc: "Card/asset generation", url: "https://thefirstspark.shop/card.html", tags: ["internal"], status: "live" },
{ name: "Archetype Card", desc: "Archetype card template", url: "https://thefirstspark.shop/archetype-card.html", tags: ["internal"], status: "live" },
]
},
"AI Partner Pages": {
icon: "๐ค",
items: [
{ name: "Claude", desc: "Claude AI integration page", url: "https://thefirstspark.shop/claude.html", tags: ["ai"], status: "live" },
{ name: "ChatGPT", desc: "ChatGPT integration page", url: "https://thefirstspark.shop/chatgpt.html", tags: ["ai"], status: "live" },
{ name: "Grok", desc: "Grok AI integration", url: "https://thefirstspark.shop/Grok001.html", tags: ["ai"], status: "live" },
]
},
"Coming Soon": {
icon: "๐",
items: [
{ name: "First Spark Mythos (Whop)", desc: "7-chapter interactive HTML origin story", tags: ["mythos", "core"], status: "wip" },
{ name: "$SPRK Token Economy", desc: "Token shop, ledger system, Whop integration", tags: ["token"], status: "planned" },
{ name: "Soul Maps NFT Collection", desc: "Genesis Collection on Base via Manifold", tags: ["nft", "soul-map"], status: "planned" },
{ name: "Mobile Spark Station", desc: "Converted van consciousness hub", tags: ["irl"], status: "planned" },
{ name: "Book Zero", desc: "Memoir - REDRUM to redemption", tags: ["content", "core"], status: "wip" },
{ name: "Obitura", desc: "AI obituary service for funeral homes", url: "https://obitura.com", tags: ["side-project"], status: "live" },
{ name: "Inner Sanctum", desc: "Hidden mystery school entrance", tags: ["mythos"], status: "wip" },
]
}
};
// Render functions
function renderProjects() {
const container = document.getElementById('projectsContainer');
container.innerHTML = '';
let totalCount = 0;
let liveCount = 0;
let toolCount = 0;
let soulMapCount = 0;
for (const [category, data] of Object.entries(projects)) {
const categoryEl = document.createElement('div');
categoryEl.className = 'category';
categoryEl.dataset.category = category;
const items = data.items;
totalCount += items.length;
items.forEach(item => {
if (item.status === 'live') liveCount++;
if (item.tags?.includes('tool')) toolCount++;
if (item.tags?.includes('soul-map')) soulMapCount++;
});
categoryEl.innerHTML = `
<div class="category-header">
<div class="category-icon">${data.icon}</div>
<h2>${category}</h2>
<span class="category-count">${items.length} items</span>
</div>
<div class="project-grid">
${items.map(item => `
<div class="project-card" data-tags="${(item.tags || []).join(',')}" data-name="${item.name.toLowerCase()}" data-desc="${(item.desc || '').toLowerCase()}">
<div class="project-title">
${item.name}
<span class="status ${item.status}">
<span class="status-dot"></span>
${item.status}
</span>
</div>
<div class="project-desc">${item.desc || ''}</div>
<div class="project-meta">
<div class="project-tags">
${(item.tags || []).map(tag => `<span class="tag">${tag}</span>`).join('')}
</div>
${item.url ? `<a href="${item.url}" target="_blank" class="project-link">View โ</a>` : ''}
</div>
</div>
`).join('')}
</div>
`;
if (category === 'Coming Soon') {
categoryEl.querySelector('.project-grid').className = 'coming-soon';
categoryEl.querySelector('.coming-soon').innerHTML = items.map(item => `
<div class="coming-soon-item" data-tags="${(item.tags || []).join(',')}" data-name="${item.name.toLowerCase()}" data-desc="${(item.desc || '').toLowerCase()}">
<div class="coming-soon-icon">
${item.status === 'wip' ? '๐จ' : '๐'}
</div>
<div class="coming-soon-text">
<div class="coming-soon-title">${item.name}</div>
<div class="coming-soon-desc">${item.desc || ''}</div>
</div>
<div class="project-tags">
${(item.tags || []).map(tag => `<span class="tag">${tag}</span>`).join('')}
</div>
${item.url ? `<a href="${item.url}" target="_blank" class="project-link">View โ</a>` : ''}
</div>
`).join('');
}
container.appendChild(categoryEl);
}
// Update stats
document.getElementById('totalCount').textContent = totalCount;
document.getElementById('liveCount').textContent = liveCount;
document.getElementById('toolCount').textContent = toolCount;
document.getElementById('soulMapCount').textContent = soulMapCount;
}
// Filter & Search
function filterProjects(searchTerm, tagFilter) {
const cards = document.querySelectorAll('.project-card, .coming-soon-item');
const categories = document.querySelectorAll('.category');
cards.forEach(card => {
const name = card.dataset.name || '';
const desc = card.dataset.desc || '';
const tags = card.dataset.tags || '';
const matchesSearch = !searchTerm ||
name.includes(searchTerm.toLowerCase()) ||
desc.includes(searchTerm.toLowerCase());
const matchesFilter = tagFilter === 'all' || tags.includes(tagFilter);
card.classList.toggle('hidden', !(matchesSearch && matchesFilter));
});
// Hide empty categories
categories.forEach(cat => {
const visibleCards = cat.querySelectorAll('.project-card:not(.hidden), .coming-soon-item:not(.hidden)');
cat.classList.toggle('hidden', visibleCards.length === 0);
});
}
// Event listeners
document.getElementById('search').addEventListener('input', (e) => {
const activeFilter = document.querySelector('.filter-pill.active').dataset.filter;
filterProjects(e.target.value, activeFilter);
});
document.querySelectorAll('.filter-pill').forEach(pill => {
pill.addEventListener('click', () => {
document.querySelectorAll('.filter-pill').forEach(p => p.classList.remove('active'));
pill.classList.add('active');
filterProjects(document.getElementById('search').value, pill.dataset.filter);
});
});
// Init
renderProjects();
</script>
</body>
</html>