Update static/index.html
Browse files- static/index.html +38 -0
static/index.html
CHANGED
|
@@ -0,0 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="ar" dir="rtl">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<title>Genisi AI</title>
|
| 6 |
+
<link rel="stylesheet" href="style.css">
|
| 7 |
+
</head>
|
| 8 |
+
<body>
|
| 9 |
+
<div class="app-container">
|
| 10 |
+
<!-- الشريط الجانبي -->
|
| 11 |
+
<aside id="sidebar" class="sidebar">
|
| 12 |
+
<button id="new-chat-btn">+ محادثة جديدة</button>
|
| 13 |
+
<div id="chat-history"></div>
|
| 14 |
+
</aside>
|
| 15 |
+
|
| 16 |
+
<!-- المنطقة الرئيسية -->
|
| 17 |
+
<main class="main-content">
|
| 18 |
+
<header>
|
| 19 |
+
<button id="toggle-sidebar">☰</button>
|
| 20 |
+
<div class="logo">Genisi</div>
|
| 21 |
+
<div class="user-profile">AnesNT</div>
|
| 22 |
+
</header>
|
| 23 |
+
|
| 24 |
+
<div id="chat-window" class="chat-window"></div>
|
| 25 |
+
|
| 26 |
+
<div class="input-area">
|
| 27 |
+
<div class="input-wrapper">
|
| 28 |
+
<input type="file" id="file-upload" hidden>
|
| 29 |
+
<button onclick="document.getElementById('file-upload').click()">📎</button>
|
| 30 |
+
<textarea id="user-input" placeholder="اسأل Genisi..."></textarea>
|
| 31 |
+
<button id="send-btn">⬆️</button>
|
| 32 |
+
</div>
|
| 33 |
+
</div>
|
| 34 |
+
</main>
|
| 35 |
+
</div>
|
| 36 |
+
<script src="script.js"></script>
|
| 37 |
+
</body>
|
| 38 |
+
</html>
|