-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreviews.html
More file actions
109 lines (98 loc) · 4.07 KB
/
reviews.html
File metadata and controls
109 lines (98 loc) · 4.07 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
<!DOCTYPE html>
<html>
<head>
<title>Anonymous Reviews | MindSpace</title>
<link rel="icon" type="image/png" href="assets/favicon.png">
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav class="topbar">
<div class="nav-left">
<a href="index.html">
<img src="assets/logo.png" alt="MindSpace Logo" class="logo">
</a>
</div>
<div class="nav-right">
<a href="index.html" class="nav-link">Home</a>
<a href="about.html" class="nav-link">About</a>
<a href="reviews.html" class="nav-link">Reviews</a>
<a href="contribute.html" class="nav-link">Support</a>
</div>
</nav>
<main class="reviews-container">
<h1>Anonymous Reviews</h1>
<p class="reviews-intro">
Real stories from real people who found comfort in MindSpace.
All reviews are completely anonymous and shared with permission.
</p>
<div class="reviews-grid">
<div class="review-card">
<div class="review-stars">⭐⭐⭐⭐⭐</div>
<p class="review-text">
"MindSpace helped me through some really tough times. The AI listened without judgment
and gave me perspective I couldn't see. It's like having a wise friend available 24/7."
</p>
<p class="review-author">— Anonymous User</p>
</div>
<div class="review-card">
<div class="review-stars">⭐⭐⭐⭐⭐</div>
<p class="review-text">
"As a student dealing with anxiety, MindSpace became my safe space. The conversations
are private, calming, and genuinely helpful. Thank you for creating this."
</p>
<p class="review-author">— Anonymous User</p>
</div>
<div class="review-card">
<div class="review-stars">⭐⭐⭐⭐⭐</div>
<p class="review-text">
"I was skeptical at first, but MindSpace surprised me. The AI responses are thoughtful
and encouraging. It's not a replacement for therapy, but it's a great supplement."
</p>
<p class="review-author">— Anonymous User</p>
</div>
<div class="review-card">
<div class="review-stars">⭐⭐⭐⭐⭐</div>
<p class="review-text">
"The quote of the day feature is a nice touch. It gives me something positive to start
my day with. MindSpace has become part of my daily routine."
</p>
<p class="review-author">— Anonymous User</p>
</div>
<div class="review-card">
<div class="review-stars">⭐⭐⭐⭐⭐</div>
<p class="review-text">
"Privacy-focused and free - exactly what I needed. No sign-ups, no data collection.
Just honest conversations that help me process my thoughts."
</p>
<p class="review-author">— Anonymous User</p>
</div>
<div class="review-card">
<div class="review-stars">⭐⭐⭐⭐⭐</div>
<p class="review-text">
"MindSpace helped me realize I wasn't alone in my struggles. The gentle guidance
and resources provided made a real difference in my mental health journey."
</p>
<p class="review-author">— Anonymous User</p>
</div>
</div>
<div class="review-submit-section">
<h2>Share Your Experience</h2>
<p class="submit-text">
Have MindSpace helped you? We'd love to hear your anonymous review.
Your story could help others find the support they need.
</p>
<p class="submit-note">
<strong>Note:</strong> Reviews are moderated to ensure they're appropriate and helpful.
All personal information is kept completely anonymous.
</p>
<a href="mailto:pro1943.235@gmail.com?subject=MindSpace Review" class="submit-btn">
Submit a Review
</a>
</div>
</main>
<footer>
<span>MindSpace · Built with care · Privacy-first</span>
</footer>
<script src="script.js"></script>
</body>
</html></content>