-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontribute.html
More file actions
125 lines (113 loc) · 4.47 KB
/
contribute.html
File metadata and controls
125 lines (113 loc) · 4.47 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
<!DOCTYPE html>
<html>
<head>
<title>Support MindSpace | Contribute to Development</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="contribute-page">
<div class="hero-section">
<h1>💝 Support MindSpace</h1>
<p class="hero-subtitle">
Help keep mental health support free and accessible for everyone.
Your contribution directly impacts lives and maintains this safe space.
</p>
</div>
<div class="support-intro">
<p class="intro-text">
MindSpace is completely free and privacy-focused. Every rupee you contribute goes directly towards:
</p>
<div class="funding-breakdown">
<div class="funding-item">
<span class="funding-icon">🖥️</span>
<span class="funding-text">Server Costs</span>
</div>
<div class="funding-item">
<span class="funding-icon">🤖</span>
<span class="funding-text">AI API Usage</span>
</div>
<div class="funding-item">
<span class="funding-icon">🚀</span>
<span class="funding-text">Future Improvements</span>
</div>
</div>
</div>
<div class="support-container">
<div class="contribution-card">
<div class="contribution-header">
<h3>💝 Contribute via UPI</h3>
<p class="contribution-subtitle">Help keep MindSpace free and accessible</p>
</div>
<div class="upi-details">
<div class="upi-id-box">
<strong>UPI ID:</strong>
<span class="upi-id">saha1943@fam</span>
<button class="copy-btn" onclick="copyUPI()">📋 Copy</button>
</div>
</div>
<div class="safety-notice">
<h4>🔒 Safety & Security</h4>
<ul class="safety-list">
<li>UPI is a secure banking system regulated by RBI</li>
<li>Always verify the UPI ID before sending money</li>
<li>Use official UPI apps like Google Pay, PhonePe, or Paytm</li>
<li>Never share sensitive banking details</li>
<li>If in doubt, contact the creator directly</li>
</ul>
</div>
<div class="thank-you-message">
<p>Thank you for your generosity! 🙏</p>
<p class="impact-note">Your contribution directly supports mental health accessibility</p>
</div>
</div>
<div class="impact-stats">
<h3>💡 Your Impact</h3>
<div class="stats-grid">
<div class="stat-item">
<span class="stat-number">∞</span>
<span class="stat-label">Free Conversations</span>
</div>
<div class="stat-item">
<span class="stat-number">24/7</span>
<span class="stat-label">Always Available</span>
</div>
<div class="stat-item">
<span class="stat-number">100%</span>
<span class="stat-label">Privacy Focused</span>
</div>
</div>
<div class="additional-info">
<h4>📊 Transparency</h4>
<p>All funds are used exclusively for MindSpace development and maintenance. No profits, no middlemen.</p>
</div>
</div>
</div>
<div class="call-to-action">
<h2>Ready to Make a Difference?</h2>
<p>Your support helps students, professionals, and anyone who needs a safe space to express themselves.</p>
<div class="cta-buttons">
<button class="cta-btn primary" id="contribute-btn" onclick="contributeNow()">Contribute Now</button>
<a href="about.html" class="cta-btn secondary">Learn More About MindSpace</a>
</div>
</div>
</main>
<footer>
<span>MindSpace · Built with care · Privacy-first</span>
</footer>
<script src="script.js"></script>
</body>
</html></content>