-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
87 lines (77 loc) · 3.04 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/styles/github-dark.min.css">
<link href='https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css' rel='stylesheet'>
<link rel="stylesheet" href="style.css">
<title>Pragya - Your AI Therapist</title>
</head>
<body>
<nav class="navbar">
<h2 class="navbar__logo">Pragya.AI</h2>
<button class="navbar__button" id="themeToggler"><i class='bx bx-sun'></i></button>
</nav>
<header class="header">
<div class="header__title">
<h1>Hello, There!</h1>
<h2>How are you feeling today?</h2>
</div>
<div class="suggests">
<div class="suggests__item">
<p class="suggests__item-text">
How’s your vibe today? Let’s talk!
</p>
<div class="suggests__item-icon">
<i class='bx bx-stopwatch'></i>
</div>
</div>
<div class="suggests__item">
<p class="suggests__item-text">
Got feels? Let’s unpack 'em!
</p>
<div class="suggests__item-icon">
<i class='bx bx-edit-alt'></i>
</div>
</div>
<div class="suggests__item">
<p class="suggests__item-text">
Rough day? Let’s turn it around!
</p>
<div class="suggests__item-icon">
<i class='bx bx-compass'></i>
</div>
</div>
<div class="suggests__item">
<p class="suggests__item-text">
Stress got you? Let’s vibe it out!
</p>
<div class="suggests__item-icon">
<i class='bx bx-wrench'></i>
</div>
</div>
</div>
</header>
<section class="chats"></section>
<section class="prompt">
<form action="#" class="prompt__form" novalidate>
<div class="prompt__input-wrapper">
<input type="text" placeholder="Enter a prompt here" class="prompt__form-input" required>
<button class="prompt__form-button" id="sendButton">
<i class='bx bx-send'></i>
</button>
<button class="prompt__form-button" id="deleteButton">
<i class='bx bx-trash'></i>
</button>
</div>
</form>
<p class="prompt__disclaim">
Pragya.ai is here to listen, but always consult a professional for serious mental health concerns.
</p>
</section>
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/highlight.min.js"></script>
<script src="script.js"></script>
</body>
</html>