-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
42 lines (40 loc) · 2.29 KB
/
about.html
File metadata and controls
42 lines (40 loc) · 2.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Mental Health Assistant</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<a class="navbar-brand" href="/">Mental Health Assistant</a>
<div class="collapse navbar-collapse">
<ul class="navbar-nav ml-auto">
<li class="nav-item"><a class="nav-link" href="/">Home</a></li>
<li class="nav-item"><a class="nav-link active" href="/about">About</a></li>
<li class="nav-item"><a class="nav-link" href="/resources">Resources</a></li>
<li class="nav-item"><a class="nav-link" href="/contact">Contact</a></li>
</ul>
</div>
</nav>
<div class="container mt-5">
<h1>About Our Mental Health Assistant</h1>
<p>This AI-powered Mental Health Assistant is designed to provide supportive listening and general mental health information. It uses advanced language processing to understand your concerns and offer helpful responses.</p>
<p>Our assistant now includes facial expression analysis to better understand your emotional state and provide more tailored support.</p>
<p>While our assistant can provide general support and information, it is not a substitute for professional mental health care. Always consult with qualified mental health professionals for personalized advice and treatment.</p>
<h2>Our Goals</h2>
<ul>
<li>Provide a safe space for expressing thoughts and feelings</li>
<li>Offer general mental health information and coping strategies</li>
<li>Guide users towards professional help when needed</li>
<li>Increase awareness about mental health issues</li>
<li>Use facial expression analysis to provide more empathetic responses</li>
</ul>
<p>Remember, your mental health is important. Don't hesitate to seek professional help if you're struggling.</p>
</div>
<footer class="text-center mt-4">
<p>© 2024 Mental Health Assistant | Powered by AI</p>
</footer>
</body>
</html>