-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
28 lines (27 loc) · 1.07 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>CleoAI | AI Brainstorm Tool</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="container">
<div id="logoContainer">
<h1 id="title"><span class="gradient">Cleo</span>AI</h1>
<h2 id="description">Your Personal AI Brainstorming Assistant</h2>
</div>
<input id="inputBar" placeholder="Enter your idea...">
<button id="generateBtn" onclick="generateIdea(document.getElementById('inputBar').value)">
<span id="generateBtnInternal">Generate Ideas</span>
<img class="loading-icon" src="assets/loading.gif" alt="Loading...">
</button>
<div id="pathContainer"></div>
<div id="ideaContainer"></div>
</div>
<footer>
<p>© 2024 CleoAI. All rights reserved. Developed by <a href="https://github.com/ZigaoWang">Zigao Wang</a> and <a href="https://github.com/JettChenT">Jett Chen</a>.</p>
</footer>
<script src="script.js"></script>
</body>
</html>