-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (36 loc) · 1.45 KB
/
index.html
File metadata and controls
41 lines (36 loc) · 1.45 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mentory - Your Software Engineering Mentor</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.jsdelivr.net/npm/marked/lib/marked.umd.js"></script>
</head>
<body>
<div class="header">
<h1>🎓 Mentory</h1>
<p>Your Personal Software Engineering Mentor</p>
<p class="tagline">Get expert guidance for your tech career journey</p>
</div>
<div class="chat-container">
<div id="response"></div>
<!-- FAQ Buttons Container -->
<div class="faq-container">
<button onclick="sendText(this)" id="FAQ">What is React?</button>
<button onclick="sendText(this)" id="FAQ">How can I start learning JavaScript?</button>
<button onclick="sendText(this)" id="FAQ">Software Engineer Intern Salary</button>
</div>
<div class="input-section">
<input type="text" id="UserInput"
placeholder="Ask me about programming, career advice, or the tech industry...">
<button onclick="sendText()" class="askmentor">Ask Mentor</button>
</div>
</div>
<div id="spinner" style="display: none;">
<div class="loader"></div>
<p><em>⏳ Your mentor is thinking...</em></p>
</div>
<script src="script.js"></script>
</body>
</html>