-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
901 lines (839 loc) · 44.4 KB
/
Copy pathindex.html
File metadata and controls
901 lines (839 loc) · 44.4 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
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description"
content="PromithicAI — Build production-ready web apps from a single prompt using a multi-agent AI pipeline. Turning prompts into powerful creations." />
<meta name="theme-color" content="#0a0e1a" />
<title>PromithicAI — Turning Prompts Into Powerful Creations</title>
<!-- Fonts -->
<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@400;500;600;700;800&family=JetBrains+Mono:wght@400;600&display=swap"
rel="stylesheet" />
<!-- CSS -->
<link rel="stylesheet" href="css/variables.css" />
<link rel="stylesheet" href="css/base.css" />
<link rel="stylesheet" href="css/animations.css" />
<link rel="stylesheet" href="css/components.css" />
<link rel="stylesheet" href="css/landing.css" />
<link rel="stylesheet" href="css/brand-story.css" />
<link rel="stylesheet" href="css/fx.css" />
<link rel="stylesheet" href="css/polish.css" />
<!-- Theme: apply early to prevent flash -->
<script>
(function () { var t = localStorage.getItem('aiwab-theme'); if (t === 'light') document.documentElement.setAttribute('data-theme', 'light'); })();
</script>
<!-- Firebase SDK (Compat) -->
<script src="https://www.gstatic.com/firebasejs/10.12.0/firebase-app-compat.js"></script>
<script src="https://www.gstatic.com/firebasejs/10.12.0/firebase-auth-compat.js"></script>
</head>
<body>
<!-- Background Orbs -->
<div class="bg-orbs" aria-hidden="true">
<div class="orb orb-1"></div>
<div class="orb orb-2"></div>
<div class="orb orb-3"></div>
</div>
<!-- ═══════ NAVBAR ═══════ -->
<nav class="navbar" id="main-nav" role="navigation" aria-label="Main navigation">
<div class="container navbar-inner">
<!-- Logo -->
<a href="index.html" class="navbar-logo" aria-label="PromithicAI home">
<div class="navbar-logo-icon" aria-hidden="true">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 10V3L4 14h7v7l9-11h-7z" />
</svg>
</div>
<span class="navbar-logo-text">Promithic<span>AI</span></span>
</a>
<span class="version-badge" aria-label="Version 1.2">v1.2</span>
<!-- Nav links -->
<nav class="navbar-nav" aria-label="Page sections">
<a href="#features" class="nav-link">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor"
aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 3l14 9-14 9V3z" />
</svg>
Features
</a>
<a href="#pipeline" class="nav-link">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor"
aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M9 3H5a2 2 0 00-2 2v4m6-6h10a2 2 0 012 2v4M9 3v18m0 0h10a2 2 0 002-2V9M9 21H5a2 2 0 01-2-2V9m0 0h18" />
</svg>
Pipeline
</a>
<a href="#how" class="nav-link">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor"
aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M8.228 9c.549-1.165 2.03-2 3.772-2 2.21 0 4 1.343 4 3 0 1.4-1.278 2.575-3.006 2.907-.542.104-.994.54-.994 1.093m0 3h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z" />
</svg>
How it Works
</a>
<a href="settings.html" class="nav-link">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor"
aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M10.325 4.317c.426-1.756 2.924-1.756 3.35 0a1.724 1.724 0 002.573 1.066c1.543-.94 3.31.826 2.37 2.37a1.724 1.724 0 001.065 2.572c1.756.426 1.756 2.924 0 3.35a1.724 1.724 0 00-1.066 2.573c.94 1.543-.826 3.31-2.37 2.37a1.724 1.724 0 00-2.572 1.065c-.426 1.756-2.924 1.756-3.35 0a1.724 1.724 0 00-2.573-1.066c-1.543.94-3.31-.826-2.37-2.37a1.724 1.724 0 00-1.065-2.572c-1.756-.426-1.756-2.924 0-3.35a1.724 1.724 0 001.066-2.573c-.94-1.543.826-3.31 2.37-2.37.996.608 2.296.07 2.572-1.065z" />
<circle cx="12" cy="12" r="3" />
</svg>
Settings
</a>
</nav>
<!-- Actions -->
<div class="navbar-actions">
<a href="login.html" class="btn btn-ghost btn-sm">Log in</a>
<a href="builder.html" class="btn btn-primary btn-sm">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor"
aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 10V3L4 14h7v7l9-11h-7z" />
</svg>
Start Building
</a>
<button class="theme-toggle" id="theme-toggle-btn" aria-label="Toggle dark/light mode" data-theme-toggle>
<svg class="icon-moon" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"
stroke="currentColor" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M20.354 15.354A9 9 0 018.646 3.646 9.003 9.003 0 0012 21a9.003 9.003 0 008.354-5.646z" />
</svg>
<svg class="icon-sun" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor"
aria-hidden="true">
<circle cx="12" cy="12" r="5" />
<line x1="12" y1="1" x2="12" y2="3" />
<line x1="12" y1="21" x2="12" y2="23" />
<line x1="4.22" y1="4.22" x2="5.64" y2="5.64" />
<line x1="18.36" y1="18.36" x2="19.78" y2="19.78" />
<line x1="1" y1="12" x2="3" y2="12" />
<line x1="21" y1="12" x2="23" y2="12" />
<line x1="4.22" y1="19.78" x2="5.64" y2="18.36" />
<line x1="18.36" y1="5.64" x2="19.78" y2="4.22" />
</svg>
</button>
<button class="nav-hamburger" id="nav-hamburger" aria-label="Open menu" aria-expanded="false">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<line x1="3" y1="6" x2="21" y2="6" stroke-width="2" stroke-linecap="round" />
<line x1="3" y1="12" x2="21" y2="12" stroke-width="2" stroke-linecap="round" />
<line x1="3" y1="18" x2="21" y2="18" stroke-width="2" stroke-linecap="round" />
</svg>
</button>
</div>
</div>
</nav>
<!-- Mobile Nav -->
<div class="mobile-nav" id="mobile-nav" role="navigation" aria-label="Mobile navigation">
<a href="#features" class="nav-link" onclick="closeMobileNav()">Features</a>
<a href="#pipeline" class="nav-link" onclick="closeMobileNav()">Pipeline</a>
<a href="#how" class="nav-link" onclick="closeMobileNav()">How it Works</a>
<a href="settings.html" class="nav-link">Settings</a>
<a href="login.html" class="nav-link">Log in</a>
<a href="builder.html" class="btn btn-primary" style="margin-top:8px;">Start Building</a>
</div>
<!-- ═══════ MAIN CONTENT ═══════ -->
<main class="page-wrapper anim-page-enter">
<!-- ═══ HERO ═══ -->
<section class="hero" aria-labelledby="hero-title">
<div class="container">
<div class="hero-inner">
<!-- Left: Copy -->
<div class="hero-copy">
<div class="hero-tag anim-fade-in-down">
<span class="dot-ping" style="width:8px;height:8px;position:relative;flex-shrink:0;">
<span style="position:absolute;inset:0;border-radius:50%;background:var(--accent-green);"></span>
<span
style="position:absolute;inset:0;border-radius:50%;background:var(--accent-green);animation:statusPing 1.5s ease infinite;"></span>
</span>
Intermediate Project · Multi-Agent AI
</div>
<h1 class="hero-title anim-fade-in-up delay-100" id="hero-title">
<span id="typewriter-target">PromithicAI</span>
</h1>
<p class="hero-subtitle anim-fade-in-up delay-200">It builds web apps — like Emergent, Lovable, v0.dev</p>
<p class="hero-desc anim-fade-in-up delay-300">
Type <strong>"build me a Pomodoro timer with Spotify"</strong> and ship a working web app. The most
demanding agent project — powered by a <strong>Planner → Coder → Reviewer</strong> pipeline.
</p>
<div class="hero-ctas anim-fade-in-up delay-400">
<a href="builder.html" class="btn btn-primary btn-lg" id="cta-build">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor"
aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M13 10V3L4 14h7v7l9-11h-7z" />
</svg>
<span class="btn-text">Start Building Free</span>
</a>
<a href="#pipeline" class="btn btn-secondary btn-lg">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor"
aria-hidden="true">
<polygon points="5 3 19 12 5 21 5 3" />
</svg>
See the Pipeline
</a>
</div>
<div class="hero-stats anim-fade-in-up delay-500">
<div>
<div class="hero-stat-num">5+</div>
<div class="hero-stat-label">App Templates</div>
</div>
<div>
<div class="hero-stat-num">3</div>
<div class="hero-stat-label">AI Agents</div>
</div>
<div>
<div class="hero-stat-num">v1.2</div>
<div class="hero-stat-label">Current Release</div>
</div>
</div>
</div>
<!-- Right: Demo Card -->
<div class="hero-demo anim-fade-in-right delay-300" role="img" aria-label="Builder interface preview">
<div class="hero-demo-bar">
<div class="hero-demo-dots">
<div class="hero-demo-dot"></div>
<div class="hero-demo-dot"></div>
<div class="hero-demo-dot"></div>
</div>
<span class="hero-demo-title">PromithicAI — builder.html</span>
</div>
<div class="hero-demo-body">
<div class="demo-prompt-box">
<div class="demo-prompt-icon" aria-hidden="true">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M13 10V3L4 14h7v7l9-11h-7z" />
</svg>
</div>
<div class="demo-prompt-text" id="demo-text">build me a Pomodoro timer with Spotify<span
class="typewriter-cursor" aria-hidden="true"></span></div>
<div class="demo-prompt-send" aria-hidden="true">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<line x1="22" y1="2" x2="11" y2="13" />
<polygon points="22 2 15 22 11 13 2 9 22 2" />
</svg>
</div>
</div>
<div class="demo-pipeline" aria-label="Agent pipeline steps">
<div class="demo-step done" aria-label="Planner step complete">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor"
aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z" />
</svg>
Planner
</div>
<span class="demo-arrow" aria-hidden="true">→</span>
<div class="demo-step active" id="demo-step-coder" aria-label="Coder step active">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor"
aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M10 20l4-16m4 4l4 4-4 4M6 16l-4-4 4-4" />
</svg>
Coder
</div>
<span class="demo-arrow" aria-hidden="true">→</span>
<div class="demo-step" aria-label="Reviewer step pending">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor"
aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2" />
</svg>
Reviewer
</div>
</div>
<div class="demo-preview-mini" aria-label="Live preview">
<iframe id="hero-preview" sandbox="allow-scripts" title="App preview"
srcdoc="<style>*{margin:0;padding:0;box-sizing:border-box}body{background:#0a0e1a;color:#f0f4ff;font-family:Inter,sans-serif;display:flex;align-items:center;justify-content:center;min-height:100vh;flex-direction:column;gap:12px}.ring{width:80px;height:80px;border-radius:50%;border:3px solid #1e2d45;display:flex;align-items:center;justify-content:center;position:relative}.fill{position:absolute;inset:-3px;border-radius:50%;border:3px solid transparent;border-top-color:#00d4ff;animation:spin 2s linear infinite}@keyframes spin{to{transform:rotate(360deg)}}.time{font-size:1.4rem;font-weight:800;font-variant-numeric:tabular-nums}.label{font-size:.6rem;color:#8b9ab4;text-transform:uppercase;letter-spacing:.1em}</style><div class='ring'><div class='fill'></div><span class='time'>24:53</span></div><div class='label'>Focus Time</div>"></iframe>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ═══ BRAND STORY ═══ -->
<section class="brand-story-section" id="brand-story" aria-labelledby="brand-story-heading">
<div class="container">
<div class="brand-story-inner" data-fx="up">
<div class="brand-story-label" data-fx="fade">The Name</div>
<h2 class="brand-story-title" id="brand-story-heading">
What does
<span class="brand-name-word">
<span class="bn-pro">Pro</span><span class="bn-mith">mithic</span><span class="bn-ai">AI</span>
</span>
mean?
</h2>
<p class="brand-story-intro" data-fx="fade">
<strong>Promithic</strong> is a coined word — crafted by blending concepts that evoke
<em>AI, creation, and innovation</em>. It doesn't exist in any dictionary.
It was built for this.
</p>
<div class="brand-breakdown" data-fx-group>
<div class="brand-part">
<span class="bp-tag bp-pro">Pro</span>
<span class="bp-arrow" aria-hidden="true">→</span>
<span class="bp-desc">Professional, forward-thinking, capable</span>
</div>
<div class="brand-part">
<span class="bp-tag bp-prom">Prom</span>
<span class="bp-arrow" aria-hidden="true">→</span>
<span class="bp-desc">Suggests <em>prompt</em> — the core of every AI interaction</span>
</div>
<div class="brand-part">
<span class="bp-tag bp-mith">-mith-</span>
<span class="bp-arrow" aria-hidden="true">→</span>
<span class="bp-desc">Inspired by <em>mythic</em> and craftsmanship — like a smith who forges things into existence</span>
</div>
<div class="brand-part">
<span class="bp-tag bp-ic">-ic</span>
<span class="bp-arrow" aria-hidden="true">→</span>
<span class="bp-desc">A modern technology company suffix — like <em>Anthropic, Databricks, Elastic</em></span>
</div>
</div>
<div class="brand-taglines" data-fx="up">
<div class="brand-taglines-label">Brand Story</div>
<blockquote class="brand-quote">
<span class="bq-name">Promithic</span>
<span class="bq-eq">=</span>
<span class="bq-line"><em>Turning prompts into powerful creations.</em></span>
</blockquote>
<blockquote class="brand-quote">
<span class="bq-name">Promithic</span>
<span class="bq-eq">=</span>
<span class="bq-line"><em>Where ideas become software.</em></span>
</blockquote>
</div>
</div>
</div>
</section>
<!-- ═══ PROVIDERS ═══ -->
<section class="providers-section" aria-label="Supported AI providers">
<div class="container">
<p class="providers-label">Supported AI Providers</p>
<div class="providers-row">
<div class="provider-logo">
<svg width="18" height="18" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true">
<path d="M12 2a10 10 0 100 20A10 10 0 0012 2z" opacity=".15" />
<path d="M17.5 12a5.5 5.5 0 11-11 0 5.5 5.5 0 0111 0z" />
</svg>
Claude
</div>
<div class="provider-logo">
<svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
aria-hidden="true">
<circle cx="12" cy="12" r="10" />
<path d="M12 6v6l4 2" />
</svg>
OpenAI
</div>
<div class="provider-logo">
<svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
aria-hidden="true">
<path
d="M21 16V8a2 2 0 00-1-1.73l-7-4a2 2 0 00-2 0l-7 4A2 2 0 003 8v8a2 2 0 001 1.73l7 4a2 2 0 002 0l7-4A2 2 0 0021 16z" />
</svg>
LangGraph
</div>
<div class="provider-logo">
<svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
aria-hidden="true">
<polyline points="16 18 22 12 16 6" />
<polyline points="8 6 2 12 8 18" />
</svg>
FastAPI
</div>
<div class="provider-logo">
<svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
aria-hidden="true">
<rect x="3" y="3" width="18" height="18" rx="2" ry="2" />
<line x1="3" y1="9" x2="21" y2="9" />
<line x1="9" y1="21" x2="9" y2="9" />
</svg>
Supabase
</div>
</div>
</div>
</section>
<!-- ═══ WHAT YOU'LL MASTER ═══ -->
<section class="master-section section" id="features" aria-labelledby="master-title">
<div class="container">
<div class="master-grid">
<div class="master-left">
<div class="section-header" style="text-align:left;margin-bottom:36px;">
<div class="section-tag">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor"
aria-hidden="true" style="width:14px;height:14px;">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M9.663 17h4.673M12 3v1m6.364 1.636l-.707.707M21 12h-1M4 12H3m3.343-5.657l-.707-.707m2.828 9.9a5 5 0 117.072 0l-.548.547A3.374 3.374 0 0014 18.469V19a2 2 0 11-4 0v-.531c0-.895-.356-1.754-.988-2.386l-.548-.547z" />
</svg>
Core Skills
</div>
<h2 class="section-title" id="master-title">What You'll Master</h2>
<p class="section-subtitle" style="text-align:left;margin-left:0;">This project covers every advanced
concept in AI-powered app development.</p>
</div>
<!-- Quick stats -->
<div style="display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-top:32px;">
<div class="card" style="text-align:center;padding:20px;">
<div
style="font-size:2rem;font-weight:800;background:var(--gradient-accent);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;">
3</div>
<div style="font-size:.8rem;color:var(--text-secondary);margin-top:4px;">AI Agents</div>
</div>
<div class="card" style="text-align:center;padding:20px;">
<div
style="font-size:2rem;font-weight:800;background:var(--gradient-accent);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;">
5+</div>
<div style="font-size:.8rem;color:var(--text-secondary);margin-top:4px;">App Templates</div>
</div>
<div class="card" style="text-align:center;padding:20px;">
<div
style="font-size:2rem;font-weight:800;background:var(--gradient-accent);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;">
∞</div>
<div style="font-size:.8rem;color:var(--text-secondary);margin-top:4px;">Prompts</div>
</div>
<div class="card" style="text-align:center;padding:20px;">
<div
style="font-size:2rem;font-weight:800;background:var(--gradient-accent);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;">
v1.2</div>
<div style="font-size:.8rem;color:var(--text-secondary);margin-top:4px;">Current</div>
</div>
</div>
</div>
<!-- Right: What you'll master card (matching the image) -->
<div class="master-right anim-fade-in-right">
<div class="master-section-tag">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor"
aria-hidden="true" style="width:16px;height:16px;flex-shrink:0;">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 3l14 9-14 9V3z" />
</svg>
What You'll Master
</div>
<div class="master-list">
<div class="master-item anim-fade-in-up delay-100">
<div class="master-item-dot"></div>
<div class="master-item-text">
Multi-agent orchestration: planner → coder → reviewer
<small>Full stateful pipeline with handoff between agents</small>
</div>
</div>
<div class="master-item anim-fade-in-up delay-200">
<div class="master-item-dot"></div>
<div class="master-item-text">
Code generation with strict structured outputs
<small>Template detection + dynamic HTML/CSS/JS generation</small>
</div>
</div>
<div class="master-item anim-fade-in-up delay-300">
<div class="master-item-dot"></div>
<div class="master-item-text">
LangGraph for stateful agent workflows
<small>Planned for v2.0 — true graph-based agent state machines</small>
</div>
</div>
<div class="master-item anim-fade-in-up delay-400">
<div class="master-item-dot"></div>
<div class="master-item-text">
MCP servers for file system + sandbox execution
<small>Planned for v2.1 — safe code execution environment</small>
</div>
</div>
<div class="master-item anim-fade-in-up delay-500">
<div class="master-item-dot"></div>
<div class="master-item-text">
Streaming code token-by-token to the user
<small>Real-time code reveal with Monaco editor integration</small>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ═══ PIPELINE ═══ -->
<section class="pipeline-section section" id="pipeline" aria-labelledby="pipeline-title">
<div class="container">
<div class="section-header">
<div class="section-tag">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor"
aria-hidden="true" style="width:14px;height:14px;">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M9 3H5a2 2 0 00-2 2v4m6-6h10a2 2 0 012 2v4M9 3v18m0 0h10a2 2 0 002-2V9M9 21H5a2 2 0 01-2-2V9m0 0h18" />
</svg>
Agent Pipeline
</div>
<h2 class="section-title" id="pipeline-title">Multi-Agent Orchestration</h2>
<p class="section-subtitle">Three specialized AI agents work in sequence to analyze, build, and review your
web app.</p>
</div>
<div class="pipeline-diagram" role="list" aria-label="Agent pipeline stages">
<div class="pipeline-node anim-fade-in-up delay-100" role="listitem">
<div class="pipeline-node-circle cyan anim-pulse-glow">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor"
aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M9.663 17h4.673M12 3v1m6.364 1.636l-.707.707M21 12h-1M4 12H3m3.343-5.657l-.707-.707m2.828 9.9a5 5 0 117.072 0l-.548.547A3.374 3.374 0 0014 18.469V19a2 2 0 11-4 0v-.531c0-.895-.356-1.754-.988-2.386l-.548-.547z" />
</svg>
</div>
<div class="pipeline-node-label text-cyan">Planner</div>
<div class="pipeline-node-desc">Analyzes prompt, identifies features, creates architecture plan</div>
</div>
<div class="pipeline-arrow" aria-hidden="true">
<div class="pipeline-arrow-line"></div>
</div>
<div class="pipeline-node anim-fade-in-up delay-300" role="listitem">
<div class="pipeline-node-circle violet anim-glow-violet">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor"
aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M10 20l4-16m4 4l4 4-4 4M6 16l-4-4 4-4" />
</svg>
</div>
<div class="pipeline-node-label text-violet">Coder</div>
<div class="pipeline-node-desc">Generates full HTML/CSS/JS, streams code token-by-token</div>
</div>
<div class="pipeline-arrow" aria-hidden="true">
<div class="pipeline-arrow-line"></div>
</div>
<div class="pipeline-node anim-fade-in-up delay-500" role="listitem">
<div class="pipeline-node-circle green">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor"
aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z" />
</svg>
</div>
<div class="pipeline-node-label text-green">Reviewer</div>
<div class="pipeline-node-desc">Reviews code quality, fixes bugs, verifies output</div>
</div>
</div>
</div>
</section>
<!-- ═══ FEATURES ═══ -->
<section class="features-section" aria-labelledby="features-title">
<div class="container">
<div class="section-header">
<div class="section-tag">Capabilities</div>
<h2 class="section-title" id="features-title">Everything You Need</h2>
<p class="section-subtitle">Built with every feature needed to ship production-quality AI-generated apps.</p>
</div>
<div class="features-grid">
<div class="feature-card anim-fade-in-up delay-100">
<div class="feature-card-icon cyan">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 10V3L4 14h7v7l9-11h-7z" />
</svg>
</div>
<div>
<div class="card-title">Live iframe Preview</div>
<div class="card-desc">See your generated app running instantly in a sandboxed iframe preview panel, side
by side with the code.</div>
</div>
</div>
<div class="feature-card anim-fade-in-up delay-200">
<div class="feature-card-icon violet">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M10 20l4-16m4 4l4 4-4 4M6 16l-4-4 4-4" />
</svg>
</div>
<div>
<div class="card-title">Monaco Code Editor</div>
<div class="card-desc">VS Code's Monaco editor with syntax highlighting, so you can read and edit
generated code right in the browser.</div>
</div>
</div>
<div class="feature-card anim-fade-in-up delay-300">
<div class="feature-card-icon green">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2" />
</svg>
</div>
<div>
<div class="card-title">Build History</div>
<div class="card-desc">Every generated app is saved locally. Go back, reload, or refine any previous build
from your history panel.</div>
</div>
</div>
<div class="feature-card anim-fade-in-up delay-400">
<div class="feature-card-icon orange">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M4 16v1a3 3 0 003 3h10a3 3 0 003-3v-1m-4-8l-4-4m0 0L8 8m4-4v12" />
</svg>
</div>
<div>
<div class="card-title">Copy & Download</div>
<div class="card-desc">Copy the full HTML to clipboard or download as a .html file with one click. Works
offline, no backend needed.</div>
</div>
</div>
<div class="feature-card anim-fade-in-up delay-500">
<div class="feature-card-icon cyan">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<circle cx="12" cy="12" r="5" />
<line x1="12" y1="1" x2="12" y2="3" />
<line x1="12" y1="21" x2="12" y2="23" />
<line x1="4.22" y1="4.22" x2="5.64" y2="5.64" />
<line x1="18.36" y1="18.36" x2="19.78" y2="19.78" />
<line x1="1" y1="12" x2="3" y2="12" />
<line x1="21" y1="12" x2="23" y2="12" />
<line x1="4.22" y1="19.78" x2="5.64" y2="18.36" />
<line x1="18.36" y1="5.64" x2="19.78" y2="4.22" />
</svg>
</div>
<div>
<div class="card-title">Dark & Light Mode</div>
<div class="card-desc">Full dark/light theme toggle with smooth CSS transitions and localStorage
persistence across all pages.</div>
</div>
</div>
<div class="feature-card anim-fade-in-up delay-600">
<div class="feature-card-icon violet">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M10.325 4.317c.426-1.756 2.924-1.756 3.35 0a1.724 1.724 0 002.573 1.066c1.543-.94 3.31.826 2.37 2.37a1.724 1.724 0 001.065 2.572c1.756.426 1.756 2.924 0 3.35a1.724 1.724 0 00-1.066 2.573c.94 1.543-.826 3.31-2.37 2.37a1.724 1.724 0 00-2.572 1.065c-.426 1.756-2.924 1.756-3.35 0a1.724 1.724 0 00-2.573-1.066c-1.543.94-3.31-.826-2.37-2.37a1.724 1.724 0 00-1.065-2.572c-1.756-.426-1.756-2.924 0-3.35a1.724 1.724 0 001.066-2.573c-.94-1.543.826-3.31 2.37-2.37.996.608 2.296.07 2.572-1.065z" />
<circle cx="12" cy="12" r="3" />
</svg>
</div>
<div>
<div class="card-title">Provider Agnostic</div>
<div class="card-desc">Switch between Claude and OpenAI in Settings. Future versions will support live API
calls with your own key.</div>
</div>
</div>
</div>
</div>
</section>
<!-- ═══ HOW IT WORKS ═══ -->
<section class="how-section" id="how" aria-labelledby="how-title">
<div class="container">
<div class="section-header">
<div class="section-tag">Process</div>
<h2 class="section-title" id="how-title">How It Works</h2>
<p class="section-subtitle">From your prompt to a live running app in seconds.</p>
</div>
<div class="how-steps">
<div class="how-step anim-fade-in-up delay-100">
<div class="how-step-num">1</div>
<div class="how-step-title">Type a Prompt</div>
<div class="how-step-desc">Describe the app you want in plain English. "Build me a Pomodoro timer" or
"Create a todo list app".</div>
</div>
<div class="how-step anim-fade-in-up delay-200">
<div class="how-step-num">2</div>
<div class="how-step-title">Planner Analyzes</div>
<div class="how-step-desc">The Planner Agent breaks down your prompt into features, architecture, and a
detailed build plan.</div>
</div>
<div class="how-step anim-fade-in-up delay-300">
<div class="how-step-num">3</div>
<div class="how-step-title">Coder Generates</div>
<div class="how-step-desc">The Coder Agent writes full HTML/CSS/JS, streaming it token-by-token into Monaco
editor.</div>
</div>
<div class="how-step anim-fade-in-up delay-400">
<div class="how-step-num">4</div>
<div class="how-step-title">Reviewer Approves</div>
<div class="how-step-desc">The Reviewer Agent checks code quality, fixes bugs, and renders the final app in
a live preview.</div>
</div>
</div>
</div>
</section>
<!-- ═══ UPCOMING ═══ -->
<section class="upcoming-section section" aria-labelledby="upcoming-title">
<div class="container">
<div class="section-header">
<div class="section-tag">Roadmap</div>
<h2 class="section-title" id="upcoming-title">Future Upgrades</h2>
<p class="section-subtitle">v1.2 is just the beginning. Here's what's coming next.</p>
</div>
<div class="upgrade-cards">
<div class="upgrade-card anim-fade-in-up delay-100">
<div class="upgrade-ver">v1.1</div>
<div class="upgrade-title">Firebase Auth + Supabase DB ✓</div>
<div class="upgrade-desc">Real authentication, user profiles, and cloud-synced build history with Supabase
PostgreSQL. <strong style="color:var(--accent-green)">Released.</strong></div>
</div>
<div class="upgrade-card anim-fade-in-up delay-200" style="border-color:var(--accent-cyan);">
<div class="upgrade-ver">v1.2</div>
<div class="upgrade-title">Live Claude + OpenAI API ✓</div>
<div class="upgrade-desc">Plug in your own API key and generate real apps with actual language model
completions. Connect/Disconnect per provider. <strong style="color:var(--accent-green)">Released.</strong></div>
</div>
<div class="upgrade-card anim-fade-in-up delay-300">
<div class="upgrade-ver">v2.0</div>
<div class="upgrade-title">Python FastAPI + LangGraph</div>
<div class="upgrade-desc">True stateful agent graph with a Python backend — real multi-agent orchestration
with persistent state.</div>
</div>
<div class="upgrade-card anim-fade-in-up delay-400">
<div class="upgrade-ver">v2.1</div>
<div class="upgrade-title">MCP Sandbox Execution</div>
<div class="upgrade-desc">MCP servers for file system access and secure sandbox code execution for complex
apps.</div>
</div>
<div class="upgrade-card anim-fade-in-up delay-500">
<div class="upgrade-ver">v2.2</div>
<div class="upgrade-title">GitHub Export + Deploy</div>
<div class="upgrade-desc">Push to GitHub and one-click deploy to Vercel or Netlify directly from the
builder.</div>
</div>
<div class="upgrade-card anim-fade-in-up delay-600">
<div class="upgrade-ver">v3.0</div>
<div class="upgrade-title">Voice-to-App Generation</div>
<div class="upgrade-desc">Speak your prompt aloud and let AI generate the app. Full voice → code → live
preview pipeline.</div>
</div>
</div>
</div>
</section>
<!-- ═══ CTA ═══ -->
<section class="cta-section" aria-labelledby="cta-title">
<div class="container">
<h2 class="cta-title" id="cta-title">
Ready to <span class="text-gradient">Build</span>?
</h2>
<p class="cta-subtitle">Type your first prompt and watch the AI pipeline bring your idea to life.</p>
<div class="cta-btns">
<a href="builder.html" class="btn btn-primary btn-xl" id="cta-main">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor"
aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 10V3L4 14h7v7l9-11h-7z" />
</svg>
<span class="btn-text">Start Building Free</span>
</a>
<a href="signup.html" class="btn btn-secondary btn-xl">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor"
aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M16 7a4 4 0 11-8 0 4 4 0 018 0zM12 14a7 7 0 00-7 7h14a7 7 0 00-7-7z" />
</svg>
Create Account
</a>
</div>
</div>
</section>
</main>
<!-- ═══════ FOOTER ═══════ -->
<footer class="footer" role="contentinfo">
<div class="container">
<div class="footer-grid">
<div class="footer-brand">
<a href="index.html" class="navbar-logo">
<div class="navbar-logo-icon" aria-hidden="true">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 10V3L4 14h7v7l9-11h-7z" />
</svg>
</div>
<span class="navbar-logo-text">Promithic<span>AI</span></span>
</a>
<p>Build production-ready web apps from a single prompt using a multi-agent AI pipeline.
<em>Turning prompts into powerful creations.</em></p>
</div>
<div>
<div class="footer-col-title">Product</div>
<a href="builder.html" class="footer-link">Builder</a>
<a href="#features" class="footer-link">Features</a>
<a href="#pipeline" class="footer-link">Pipeline</a>
<a href="settings.html" class="footer-link">Settings</a>
</div>
<div>
<div class="footer-col-title">Account</div>
<a href="login.html" class="footer-link">Login</a>
<a href="signup.html" class="footer-link">Sign Up</a>
<a href="settings.html" class="footer-link">API Keys</a>
</div>
<div>
<div class="footer-col-title">Tech Stack</div>
<a href="#" class="footer-link">Claude API</a>
<a href="#" class="footer-link">OpenAI API</a>
<a href="#" class="footer-link">LangGraph</a>
<a href="#" class="footer-link">FastAPI</a>
</div>
</div>
<div class="footer-bottom">
<div class="footer-copyright">© 2026 PromithicAI · <span class="version-badge"
style="display:inline-flex;vertical-align:middle;">v1.2</span></div>
<div class="footer-links">
<a href="#">Privacy</a>
<a href="#">Terms</a>
<a href="#">GitHub</a>
</div>
</div>
</div>
</footer>
<!-- Toast container -->
<div id="toast-container" role="alert" aria-live="polite"></div>
<!-- JS -->
<script src="js/theme.js"></script>
<script src="js/router.js"></script>
<script src="js/firebase.js"></script>
<script src="js/auth.js"></script>
<script>
// Navbar scroll shadow
var nav = document.getElementById('main-nav');
window.addEventListener('scroll', function () {
nav.classList.toggle('scrolled', window.scrollY > 10);
});
// Mobile nav toggle
var hamburger = document.getElementById('nav-hamburger');
var mobileNav = document.getElementById('mobile-nav');
hamburger.addEventListener('click', function () {
var isOpen = mobileNav.classList.toggle('open');
hamburger.setAttribute('aria-expanded', isOpen);
});
function closeMobileNav() {
mobileNav.classList.remove('open');
hamburger.setAttribute('aria-expanded', 'false');
}
// Smooth scroll for anchor links
document.querySelectorAll('a[href^="#"]').forEach(function (link) {
link.addEventListener('click', function (e) {
var target = document.querySelector(link.getAttribute('href'));
if (target) {
e.preventDefault();
closeMobileNav();
target.scrollIntoView({ behavior: 'smooth', block: 'start' });
}
});
});
// Animated hero demo pipeline cycling
var demoStepCoder = document.getElementById('demo-step-coder');
var demoSteps = document.querySelectorAll('.demo-step');
var stepIdx = 1;
setInterval(function () {
demoSteps.forEach(function (s) { s.classList.remove('active', 'done'); });
for (var i = 0; i < stepIdx; i++) {
if (demoSteps[i]) demoSteps[i].classList.add('done');
}
if (demoSteps[stepIdx]) demoSteps[stepIdx].classList.add('active');
stepIdx = (stepIdx + 1) % (demoSteps.length + 1);
if (stepIdx === 0) {
demoSteps.forEach(function (s) { s.classList.remove('active', 'done'); });
demoSteps[0].classList.add('active');
stepIdx = 1;
}
}, 1800);
// Intersection Observer for scroll animations
var observer = new IntersectionObserver(function (entries) {
entries.forEach(function (entry) {
if (entry.isIntersecting) {
entry.target.style.opacity = '1';
entry.target.style.transform = 'none';
observer.unobserve(entry.target);
}
});
}, { threshold: 0.1 });
document.querySelectorAll('.anim-fade-in-up, .anim-fade-in-right').forEach(function (el) {
el.style.opacity = '0';
observer.observe(el);
});
</script>
<script src="js/fx.js"></script>
</body>
</html>