-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
111 lines (111 loc) · 3.7 KB
/
Copy pathindex.html
File metadata and controls
111 lines (111 loc) · 3.7 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Gemini Chatbot | CodingNepal</title>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@32,400,0,0"
/>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="container">
<header class="app-header">
<h1 class="heading">Hello, there</h1>
<h4 class="sub-heading">How can I help you today?</h4>
</header>
<ul class="suggestions">
<li class="suggestions-item">
<p class="text">
Design a home office setup for remote work under $500.
</p>
<span class="icon material-symbols-rounded">draw</span>
</li>
<li class="suggestions-item">
<p class="text">
How can I level up my web development expertise in 2025?
</p>
<span class="icon material-symbols-rounded">lightbulb</span>
</li>
<li class="suggestions-item">
<p class="text">
Suggest some useful tools for debugging JavaScript code.
</p>
<span class="icon material-symbols-rounded">explore</span>
</li>
<li class="suggestions-item">
<p class="text">
Create a React JS component for the simple todo list app.
</p>
<span class="icon material-symbols-rounded">code_blocks</span>
</li>
</ul>
<div class="chats-container"></div>
<div class="prompt-container">
<div class="prompt-wrapper">
<form action="#" class="prompt-form">
<input
type="text"
placeholder="Ask Gemini"
class="prompt-input"
required
/>
<div class="prompt-actions">
<div class="file-upload-wrapper">
<img src="#" class="file-preview" />
<input
id="file-input"
type="file"
accept="image/*, .pdf, .txt, .csv"
hidden
/>
<button
type="button"
class="file-icon material-symbols-rounded"
>
description
</button>
<button
id="cancel-file-btn"
type="button"
class="material-symbols-rounded"
>
close
</button>
<button
id="add-file-btn"
type="button"
class="material-symbols-rounded"
>
attach_file
</button>
</div>
<button
id="stop-response-btn"
type="button"
class="material-symbols-rounded"
>
stop_circle
</button>
<button id="send-prompt-btn" class="material-symbols-rounded">
arrow_upward
</button>
</div>
</form>
<button id="theme-toggle-btn" class="material-symbols-rounded">
light_mode
</button>
<button id="delete-chats-btn" class="material-symbols-rounded">
delete
</button>
</div>
<p class="disclaimer-text">
Powerd by <a href="https://gemini.google.com">Gemini</a>
</p>
</div>
</div>
<script src="script.js"></script>
</body>
</html>