-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
134 lines (130 loc) · 4.75 KB
/
index.html
File metadata and controls
134 lines (130 loc) · 4.75 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<!DOCTYPE html>
<html lang="en" data-bs-theme="dark">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>IntelliGenie</title>
<link rel="stylesheet" href="style.css" />
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH"
crossorigin="anonymous"
/>
<!-- linking goggle fonts for icons -->
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200"
/>
</head>
<body>
<!-- <div class="container mt-4" id="nav-container">
<nav class="navbar navbar-light">
<a class="navbar-brand" href="#">Intelli Genie</a>
<img src="image/account.svg" width="30" height="30" alt="" />
</nav>
</div> -->
<div class="container" id="header-container">
<header class="header">
<!-- header greetings -->
<h2 class="title">Hello, there</h2>
<h4 class="subtitle">How can I help you today ?</h4>
<!-- suggestion list -->
<div class="d-flex" id="suggestion-list">
<div
class="card"
style="border-radius: 1rem; background-color: #161618cd"
>
<div class="card-body d-flex align-items-end flex-column">
<p class="card-text">
Plan a low carb meal with what's available in my fridge
</p>
<span class="material-symbols-rounded bg-dark rounded-circle p-2"
>draw</span
>
</div>
</div>
<div
class="card"
style="border-radius: 1rem; background-color: #161618cd"
>
<div class="card-body d-flex align-items-end flex-column">
<p class="card-text">Come up with a product name for a new app</p>
<span class="material-symbols-rounded bg-dark rounded-circle p-2"
>draw</span
>
</div>
</div>
<div
class="card"
style="border-radius: 1rem; background-color: #161618cd"
>
<div class="card-body d-flex align-items-end flex-column">
<p class="card-text">
Look up a Linux shell command for a specific task
</p>
<span class="material-symbols-rounded bg-dark rounded-circle p-2"
>code</span
>
</div>
</div>
<div
class="card"
style="border-radius: 1rem; background-color: #161618cd"
>
<div class="card-body d-flex align-items-end flex-column">
<p class="card-text">
Settle a debate: how should you store bread?
</p>
<span class="material-symbols-rounded bg-dark rounded-circle p-2"
>lightbulb</span
>
</div>
</div>
</div>
</header>
<!-- chat list -->
<div class="chat-list"></div>
</div>
<form class="prompt_form">
<div class="form-group d-flex rounded-pill p-3" id="form-fields">
<input
type="text"
class="form-control rounded-pill typing-input"
id="prompt"
aria-describedby="emailHelp"
placeholder="Enter Prompt Here"
style="
border: none;
outline: none;
background-color: transparent;
color: white;
"
/>
<button type="submit" class="btn text-white fs-6 buttonInnerButton">
<span class="material-symbols-rounded">send</span>
</button>
<button
id="del"
type="submit"
class="btn text-white fs-6 buttonInnerButton"
>
<span class="material-symbols-rounded">delete</span>
</button>
</div>
<small id="info" class="form-text text-muted"
>Gemini may display inaccurate info, including about people, so
double-check its responses. Your
<a href="#">privacy and Gemini Apps</a></small
>
</form>
<script src="script.js"></script>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"
crossorigin="anonymous"
></script>
<!-- Static App Form Collection Script -->
</body>
</html>