LordXido commited on
Commit
e495c61
·
verified ·
1 Parent(s): a8f4199

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +21 -18
index.html CHANGED
@@ -2,25 +2,28 @@
2
  <html lang="en">
3
  <head>
4
  <meta charset="UTF-8">
5
- <title>CodexWebVM :: Self-Hosting Cognitive System</title>
6
- <style>
7
- html, body {
8
- margin: 0;
9
- background: black;
10
- color: white;
11
- font-family: monospace;
12
- text-align: center;
13
- }
14
- video {
15
- width: 100%;
16
- height: auto;
17
- margin-top: 30px;
18
- }
19
- </style>
20
  </head>
21
  <body>
22
- <h1>🧠 CodexWebVM Cognitive Engine</h1>
23
- <video src="/runtime/animation.mp4" autoplay loop muted playsinline></video>
24
- <script src="/runtime/engine.js"></script>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
25
  </body>
26
  </html>
 
2
  <html lang="en">
3
  <head>
4
  <meta charset="UTF-8">
5
+ <title>CodexWebVM Self-Hosting Cognitive Engine</title>
6
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
7
+ <link rel="stylesheet" href="style.css">
 
 
 
 
 
 
 
 
 
 
 
 
8
  </head>
9
  <body>
10
+ <header>
11
+ <h1>🚀 CodexWebVM Interactive SVG Cognitive Engine</h1>
12
+ <p class="equation">dΞ/dt = −Λ ∇Ξ (Θ + Φ − Ψ + Ω)</p>
13
+ </header>
14
+
15
+ <main class="container">
16
+ <!-- Live SVG Engine -->
17
+ <svg id="svgEngine" viewBox="-250 -250 500 500"></svg>
18
+
19
+ <!-- Control Panel -->
20
+ <section class="panel">
21
+ <label for="psiInput">Ψ(t) — Intent Vector</label>
22
+ <input id="psiInput" placeholder="Type intent & press Enter">
23
+ <div id="log" class="log"></div>
24
+ </section>
25
+ </main>
26
+
27
+ <script src="engine.js"></script>
28
  </body>
29
  </html>