Spaces:
Sleeping
Sleeping
Update static/indexAI.html
Browse files- static/indexAI.html +64 -2
static/indexAI.html
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
|
2 |
<html>
|
3 |
<head>
|
4 |
<title>Excel Visualizer</title>
|
@@ -209,4 +209,66 @@
|
|
209 |
}
|
210 |
</script>
|
211 |
</body>
|
212 |
-
</html
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!--<!DOCTYPE html>
|
2 |
<html>
|
3 |
<head>
|
4 |
<title>Excel Visualizer</title>
|
|
|
209 |
}
|
210 |
</script>
|
211 |
</body>
|
212 |
+
</html>!-->
|
213 |
+
|
214 |
+
<!DOCTYPE html>
|
215 |
+
<html lang="en">
|
216 |
+
<head>
|
217 |
+
<meta charset="UTF-8" />
|
218 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
219 |
+
<title>ALGenius</title>
|
220 |
+
<link rel="stylesheet" href="project_css.css" />
|
221 |
+
<script defer src="project_javascript.js"></script>
|
222 |
+
</head>
|
223 |
+
<body>
|
224 |
+
<header>
|
225 |
+
<h1>ALGenius</h1>
|
226 |
+
<p>Explore powerful AI tools below</p>
|
227 |
+
</header>
|
228 |
+
|
229 |
+
<main>
|
230 |
+
<section class="cards">
|
231 |
+
<div class="card" onclick="showSection('document-image-analysis')">
|
232 |
+
<div class="icon">📝</div>
|
233 |
+
<h2>Document & Image Analysis</h2>
|
234 |
+
<p>Summarize documents and generate captions for images.</p>
|
235 |
+
</div>
|
236 |
+
<div class="card" onclick="showSection('question-answering')">
|
237 |
+
<div class="icon">💬</div>
|
238 |
+
<h2>Intelligent Question Answering</h2>
|
239 |
+
<p>Ask questions based on documents or images.</p>
|
240 |
+
</div>
|
241 |
+
<div class="card" onclick="showSection('data-visualization')">
|
242 |
+
<div class="icon">📊</div>
|
243 |
+
<h2>Data Visualization Code Generation</h2>
|
244 |
+
<p>Generate Python code for visualizing data from Excel.</p>
|
245 |
+
</div>
|
246 |
+
</section>
|
247 |
+
|
248 |
+
<section id="document-image-analysis" class="tool-section">
|
249 |
+
<h3>Document & Image Analysis</h3>
|
250 |
+
<textarea placeholder="Paste your document here..."></textarea>
|
251 |
+
<input type="file" accept="image/*" />
|
252 |
+
<button>Summarize/Caption</button>
|
253 |
+
</section>
|
254 |
+
|
255 |
+
<section id="question-answering" class="tool-section">
|
256 |
+
<h3>Intelligent Question Answering</h3>
|
257 |
+
<textarea placeholder="Ask your question here..."></textarea>
|
258 |
+
<input type="file" accept="image/*" />
|
259 |
+
<button>Ask Question</button>
|
260 |
+
</section>
|
261 |
+
|
262 |
+
<section id="data-visualization" class="tool-section">
|
263 |
+
<h3>Data Visualization Code Generation</h3>
|
264 |
+
<input type="file" accept=".xlsx" />
|
265 |
+
<textarea placeholder="Describe your visualization request in natural language..."></textarea>
|
266 |
+
<button>Generate Code</button>
|
267 |
+
</section>
|
268 |
+
</main>
|
269 |
+
|
270 |
+
<footer>
|
271 |
+
<p>© 2025 ALGenius. All rights reserved.</p>
|
272 |
+
</footer>
|
273 |
+
</body>
|
274 |
+
</html>
|