Upload index.html

#21
by Barouia - opened
Files changed (1) hide show
  1. index.html +41 -0
index.html ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!doctype html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <title>Barouia — Cortex Final</title>
6
+ <meta name="viewport" content="width=device-width,initial-scale=1">
7
+ <link rel="stylesheet" href="/static/style.css">
8
+ </head>
9
+ <body>
10
+ <div class="container">
11
+ <header class="glass">
12
+ <h1>Barouia</h1>
13
+ <p class="sub">Cortex Final — Interface</p>
14
+ </header>
15
+
16
+ <main class="glass layout">
17
+ <section class="left">
18
+ <div id="cortex-visual" class="cortex"></div>
19
+ <div class="controls">
20
+ <button id="btn-voice">🎤 Voice Input</button>
21
+ <button id="btn-clear">🧹 Clear Memory</button>
22
+ </div>
23
+ </section>
24
+
25
+ <section class="right">
26
+ <div id="chat" class="chat"></div>
27
+ <div class="input-row">
28
+ <input id="input" placeholder="Tape ta commande..." autocomplete="off" />
29
+ <button id="send">Envoyer</button>
30
+ </div>
31
+ </section>
32
+ </main>
33
+
34
+ <footer class="glass">
35
+ <small>Opérateur: Tangara — Sékou Oumar</small>
36
+ </footer>
37
+ </div>
38
+
39
+ <script src="/static/app.js"></script>
40
+ </body>
41
+ </html>