-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
80 lines (66 loc) · 2.76 KB
/
about.html
File metadata and controls
80 lines (66 loc) · 2.76 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
<!DOCTYPE html>
<html>
<head>
<title>About the Creator | 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="about-container">
<h1>About the Creator</h1>
<p class="about-text">
Hi 👋 I’m a student developer who believes that technology should not only
solve technical problems, but also help people feel heard and understood.
</p>
<p class="about-text">
MindSpace was created as a safe, anonymous space where anyone — especially
students — can express thoughts they may not feel comfortable sharing out loud.
There is no judgment here, no pressure, and no expectation to be “okay.”
</p>
<p class="about-text">
The idea came from observing how often people overthink, bottle up emotions,
or feel mentally overwhelmed without a place to simply pause and reflect.
MindSpace is not meant to replace real human support or professional help —
it exists to offer calm conversation, gentle reflection, and emotional clarity.
</p>
<p class="about-text">
This project is completely free, privacy-focused, and built with the intention
of learning, experimenting, and creating something meaningful.
No conversations are stored. No accounts are required.
</p>
<div class="support-cta">
<p>💝 <a href="contribute.html" class="support-link">Support MindSpace's development</a> to help keep this platform free and accessible for everyone.</p>
</div>
<h2>Connect With Me</h2>
<div class="social-links">
<a href="https://github.com/pro1943" target="_blank" class="social-link github">
<span class="social-icon">🐙</span>
<span class="social-text">GitHub</span>
</a>
<a href="https://www.youtube.com/@TheMadScientist-i3p" target="_blank" class="social-link youtube">
<span class="social-icon">📺</span>
<span class="social-text">YouTube</span>
</a>
</div>
<p class="about-signoff">
— Creator of MindSpace 🌱
</p>
</main>
<footer>
<span>MindSpace · Built with care · Privacy-first</span>
</footer>
</body>
</html>