-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathold_version.html
More file actions
302 lines (276 loc) · 45.7 KB
/
old_version.html
File metadata and controls
302 lines (276 loc) · 45.7 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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SpendWise | Smart Personal Finance Manager</title>
<meta name="description" content="A comprehensive personal finance tracking app built with React, TypeScript & Firebase. Track expenses, set budgets, and achieve your financial goals.">
<meta property="og:title" content="SpendWise | Smart Personal Finance Manager">
<meta property="og:description" content="A comprehensive personal finance tracking app built with React, TypeScript & Firebase.">
<meta property="og:type" content="website">
<meta property="og:url" content="https://lekhanpro.github.io/spendwisev2/">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap" rel="stylesheet">
<script src="https://cdn.tailwindcss.com"></script>
<style>
* { font-family: 'Inter', sans-serif; }
html { scroll-behavior: smooth; }
.gradient-text { background: linear-gradient(135deg, #3b82f6, #8b5cf6, #06b6d4); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.glow { box-shadow: 0 0 60px rgba(59, 130, 246, 0.3); }
.card-hover { transition: all 0.3s ease; }
.card-hover:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
.float { animation: float 6s ease-in-out infinite; }
</style>
</head>
<body class="bg-black text-white">
<!-- Navigation -->
<nav class="fixed top-0 left-0 right-0 z-50 bg-black/80 backdrop-blur-xl border-b border-white/5">
<div class="max-w-7xl mx-auto px-6 h-20 flex items-center justify-between">
<a href="index.html" class="flex items-center gap-3">
<div class="w-10 h-10 rounded-xl bg-gradient-to-tr from-blue-600 to-cyan-400 flex items-center justify-center text-xl">💰</div>
<span class="text-xl font-bold">SpendWise</span>
</a>
<div class="hidden md:flex items-center gap-8 text-sm font-medium text-gray-400">
<a href="index.html" class="text-white">Home</a>
<a href="docs/api.html" class="hover:text-white transition-colors">API</a>
<a href="docs/architecture.html" class="hover:text-white transition-colors">Architecture</a>
<a href="docs/codebase.html" class="hover:text-white transition-colors">Codebase</a>
<a href="docs/services.html" class="hover:text-white transition-colors">Services</a>
<a href="https://github.com/lekhanpro/spendwisev2" target="_blank" class="hover:text-white transition-colors">GitHub</a>
</div>
<a href="https://spendwisev2.vercel.app" class="px-6 py-2.5 bg-white text-black rounded-full font-bold hover:bg-gray-200 transition-all">
Launch App
</a>
</div>
</nav>
<!-- Hero Section -->
<section class="relative min-h-screen flex items-center justify-center pt-20 overflow-hidden">
<div class="absolute top-1/4 left-1/2 -translate-x-1/2 w-[800px] h-[600px] bg-blue-600/20 rounded-full blur-[150px]"></div>
<div class="absolute bottom-0 right-0 w-[600px] h-[400px] bg-purple-600/15 rounded-full blur-[120px]"></div>
<div class="relative z-10 max-w-5xl mx-auto px-6 text-center">
<div class="inline-flex items-center gap-2 px-4 py-2 rounded-full bg-white/5 border border-white/10 text-sm text-blue-300 mb-8">
<span class="w-2 h-2 rounded-full bg-green-400 animate-pulse"></span>
v1.0.3 ΓÇó Open Source
</div>
<h1 class="text-5xl md:text-7xl font-extrabold mb-8 leading-tight">
<span class="gradient-text">SpendWise</span>
</h1>
<p class="text-xl md:text-2xl text-gray-400 mb-12 max-w-3xl mx-auto leading-relaxed">
A comprehensive personal finance tracking app built with <span class="text-white">React</span>, <span class="text-white">TypeScript</span> & <span class="text-white">Firebase</span>. Track expenses, set budgets, and achieve your financial goals.
</p>
<div class="flex flex-wrap items-center justify-center gap-4">
<a href="https://spendwisev2.vercel.app" class="px-8 py-4 bg-gradient-to-r from-blue-600 to-blue-500 text-white rounded-2xl font-bold hover:scale-105 transition-all shadow-lg shadow-blue-500/25 flex items-center gap-2">
<svg class="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M21 12a9 9 0 01-9 9m9-9a9 9 0 00-9-9m9 9H3m9 9a9 9 0 01-9-9m9 9c1.657 0 3-4.03 3-9s-1.343-9-3-9m0 18c-1.657 0-3-4.03-3-9s1.343-9 3-9m-9 9a9 9 0 019-9"></path></svg>
Try Web App
</a>
<a href="https://github.com/lekhanpro/spendwisev2" target="_blank" class="px-8 py-4 bg-white/5 border border-white/10 text-white rounded-2xl font-semibold hover:bg-white/10 transition-all flex items-center gap-2">
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 24 24"><path d="M12 0c-6.626 0-12 5.373-12 12 0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23.957-.266 1.983-.399 3.003-.404 1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576 4.765-1.589 8.199-6.086 8.199-11.386 0-6.627-5.373-12-12-12z"/></svg>
View on GitHub
</a>
<a href="docs/api.html" class="px-8 py-4 bg-white/5 border border-white/10 text-white rounded-2xl font-semibold hover:bg-white/10 transition-all flex items-center gap-2">
<svg class="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z"></path></svg>
API Docs
</a>
</div>
</div>
</section>
<!-- Documentation Section -->
<section class="py-24 px-6 border-t border-white/5">
<div class="max-w-6xl mx-auto">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-5xl font-bold mb-4">Documentation</h2>
<p class="text-gray-400 text-lg">Explore our comprehensive documentation</p>
</div>
<div class="grid md:grid-cols-2 lg:grid-cols-4 gap-6">
<a href="docs/api.html" class="card-hover p-8 rounded-3xl bg-zinc-900/50 border border-zinc-800 hover:border-blue-500/50">
<div class="w-14 h-14 rounded-2xl bg-blue-500/10 flex items-center justify-center text-blue-400 mb-6">
<svg class="w-7 h-7" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 20l4-16m4 4l4 4-4 4M6 16l-4-4 4-4"></path></svg>
</div>
<h3 class="text-xl font-bold mb-2">API Reference</h3>
<p class="text-gray-400 text-sm">Complete API documentation with examples</p>
</a>
<a href="docs/architecture.html" class="card-hover p-8 rounded-3xl bg-zinc-900/50 border border-zinc-800 hover:border-purple-500/50">
<div class="w-14 h-14 rounded-2xl bg-purple-500/10 flex items-center justify-center text-purple-400 mb-6">
<svg class="w-7 h-7" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 11H5m14 0a2 2 0 012 2v6a2 2 0 01-2 2H5a2 2 0 01-2-2v-6a2 2 0 012-2m14 0V9a2 2 0 00-2-2M5 11V9a2 2 0 012-2m0 0V5a2 2 0 012-2h6a2 2 0 012 2v2M7 7h10"></path></svg>
</div>
<h3 class="text-xl font-bold mb-2">Architecture</h3>
<p class="text-gray-400 text-sm">System design and component structure</p>
</a>
<a href="docs/codebase.html" class="card-hover p-8 rounded-3xl bg-zinc-900/50 border border-zinc-800 hover:border-green-500/50">
<div class="w-14 h-14 rounded-2xl bg-green-500/10 flex items-center justify-center text-green-400 mb-6">
<svg class="w-7 h-7" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 7v10a2 2 0 002 2h14a2 2 0 002-2V9a2 2 0 00-2-2h-6l-2-2H5a2 2 0 00-2 2z"></path></svg>
</div>
<h3 class="text-xl font-bold mb-2">Codebase Guide</h3>
<p class="text-gray-400 text-sm">Navigate the project structure</p>
</a>
<a href="docs/services.html" class="card-hover p-8 rounded-3xl bg-zinc-900/50 border border-zinc-800 hover:border-orange-500/50">
<div class="w-14 h-14 rounded-2xl bg-orange-500/10 flex items-center justify-center text-orange-400 mb-6">
<svg class="w-7 h-7" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 12h14M5 12a2 2 0 01-2-2V6a2 2 0 012-2h14a2 2 0 012 2v4a2 2 0 01-2 2M5 12a2 2 0 00-2 2v4a2 2 0 002 2h14a2 2 0 002-2v-4a2 2 0 00-2-2m-2-4h.01M17 16h.01"></path></svg>
</div>
<h3 class="text-xl font-bold mb-2">Services</h3>
<p class="text-gray-400 text-sm">Backend services and integrations</p>
</a>
</div>
</div>
</section>
<!-- Features Section -->
<section id="features" class="py-24 px-6 bg-zinc-900/30">
<div class="max-w-6xl mx-auto">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-5xl font-bold mb-4">Features</h2>
<p class="text-gray-400 text-lg">Everything you need to manage your personal finances</p>
</div>
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
<div class="card-hover p-8 rounded-3xl bg-black border border-zinc-800">
<div class="w-14 h-14 rounded-2xl bg-blue-500/10 flex items-center justify-center text-blue-400 mb-6">
<svg class="w-7 h-7" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 19v-6a2 2 0 00-2-2H5a2 2 0 00-2 2v6a2 2 0 002 2h2a2 2 0 002-2zm0 0V9a2 2 0 012-2h2a2 2 0 012 2v10m-6 0a2 2 0 002 2h2a2 2 0 002-2m0 0V5a2 2 0 012-2h2a2 2 0 012 2v14a2 2 0 01-2 2h-2a2 2 0 01-2-2z"></path></svg>
</div>
<h3 class="text-xl font-bold mb-3">Expense Tracking</h3>
<p class="text-gray-400">Track all your expenses with detailed categorization and real-time updates.</p>
</div>
<div class="card-hover p-8 rounded-3xl bg-black border border-zinc-800">
<div class="w-14 h-14 rounded-2xl bg-green-500/10 flex items-center justify-center text-green-400 mb-6">
<svg class="w-7 h-7" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 8c-1.657 0-3 .895-3 2s1.343 2 3 2 3 .895 3 2-1.343 2-3 2m0-8c1.11 0 2.08.402 2.599 1M12 8V7m0 1v8m0 0v1m0-1c-1.11 0-2.08-.402-2.599-1M21 12a9 9 0 11-18 0 9 9 0 0118 0z"></path></svg>
</div>
<h3 class="text-xl font-bold mb-3">Budget Management</h3>
<p class="text-gray-400">Set monthly budgets for categories and get alerts when approaching limits.</p>
</div>
<div class="card-hover p-8 rounded-3xl bg-black border border-zinc-800">
<div class="w-14 h-14 rounded-2xl bg-purple-500/10 flex items-center justify-center text-purple-400 mb-6">
<svg class="w-7 h-7" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m5.618-4.016A11.955 11.955 0 0112 2.944a11.955 11.955 0 01-8.618 3.04A12.02 12.02 0 003 9c0 5.591 3.824 10.29 9 11.622 5.176-1.332 9-6.03 9-11.622 0-1.042-.133-2.052-.382-3.016z"></path></svg>
</div>
<h3 class="text-xl font-bold mb-3">Goal Setting</h3>
<p class="text-gray-400">Create savings goals and track your progress with visual milestones.</p>
</div>
<div class="card-hover p-8 rounded-3xl bg-black border border-zinc-800">
<div class="w-14 h-14 rounded-2xl bg-orange-500/10 flex items-center justify-center text-orange-400 mb-6">
<svg class="w-7 h-7" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M11 3.055A9.001 9.001 0 1020.945 13H11V3.055z"></path><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M20.488 9H15V3.512A9.025 9.025 0 0120.488 9z"></path></svg>
</div>
<h3 class="text-xl font-bold mb-3">Analytics & Reports</h3>
<p class="text-gray-400">Visualize spending patterns with interactive charts and detailed reports.</p>
</div>
<div class="card-hover p-8 rounded-3xl bg-black border border-zinc-800">
<div class="w-14 h-14 rounded-2xl bg-cyan-500/10 flex items-center justify-center text-cyan-400 mb-6">
<svg class="w-7 h-7" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 15v2m-6 4h12a2 2 0 002-2v-6a2 2 0 00-2-2H6a2 2 0 00-2 2v6a2 2 0 002 2zm10-10V7a4 4 0 00-8 0v4h8z"></path></svg>
</div>
<h3 class="text-xl font-bold mb-3">Secure Authentication</h3>
<p class="text-gray-400">Firebase-powered authentication with email verification and Google OAuth.</p>
</div>
<div class="card-hover p-8 rounded-3xl bg-black border border-zinc-800">
<div class="w-14 h-14 rounded-2xl bg-pink-500/10 flex items-center justify-center text-pink-400 mb-6">
<svg class="w-7 h-7" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M20.354 15.354A9 9 0 018.646 3.646 9.003 9.003 0 0012 21a9.003 9.003 0 008.354-5.646z"></path></svg>
</div>
<h3 class="text-xl font-bold mb-3">Dark Mode</h3>
<p class="text-gray-400">Beautiful glass-morphic interface with dark mode for comfortable viewing.</p>
</div>
</div>
</div>
</section>
<!-- Tech Stack Section -->
<section class="py-24 px-6 border-t border-white/5">
<div class="max-w-6xl mx-auto">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-5xl font-bold mb-4">Tech Stack</h2>
<p class="text-gray-400 text-lg">Built with modern technologies for the best experience</p>
</div>
<div class="grid grid-cols-2 md:grid-cols-4 lg:grid-cols-6 gap-6">
<div class="p-6 rounded-2xl bg-zinc-900/50 border border-zinc-800 text-center hover:border-blue-500/50 transition-colors">
<div class="text-3xl mb-3">⚛️</div>
<div class="font-semibold">React</div>
</div>
<div class="p-6 rounded-2xl bg-zinc-900/50 border border-zinc-800 text-center hover:border-blue-500/50 transition-colors">
<div class="text-3xl mb-3">📘</div>
<div class="font-semibold">TypeScript</div>
</div>
<div class="p-6 rounded-2xl bg-zinc-900/50 border border-zinc-800 text-center hover:border-orange-500/50 transition-colors">
<div class="text-3xl mb-3">🔥</div>
<div class="font-semibold">Firebase</div>
</div>
<div class="p-6 rounded-2xl bg-zinc-900/50 border border-zinc-800 text-center hover:border-purple-500/50 transition-colors">
<div class="text-3xl mb-3">ΓÜí</div>
<div class="font-semibold">Vite</div>
</div>
<div class="p-6 rounded-2xl bg-zinc-900/50 border border-zinc-800 text-center hover:border-cyan-500/50 transition-colors">
<div class="text-3xl mb-3">🎨</div>
<div class="font-semibold">Tailwind CSS</div>
</div>
<div class="p-6 rounded-2xl bg-zinc-900/50 border border-zinc-800 text-center hover:border-green-500/50 transition-colors">
<div class="text-3xl mb-3">📊</div>
<div class="font-semibold">Recharts</div>
</div>
</div>
</div>
</section>
<!-- Quick Start Section -->
<section class="py-24 px-6 bg-zinc-900/30">
<div class="max-w-4xl mx-auto">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-5xl font-bold mb-4">Quick Start</h2>
<p class="text-gray-400 text-lg">Get up and running in minutes</p>
</div>
<div class="space-y-8">
<div class="p-6 rounded-2xl bg-black border border-zinc-800">
<h3 class="text-lg font-bold mb-4 flex items-center gap-2">
<span class="w-8 h-8 rounded-full bg-blue-500/20 flex items-center justify-center text-blue-400 text-sm">1</span>
Prerequisites
</h3>
<ul class="text-gray-400 space-y-2 ml-10">
<li>ΓÇó Node.js 18+ installed</li>
<li>ΓÇó npm or yarn package manager</li>
<li>ΓÇó Firebase account for authentication</li>
</ul>
</div>
<div class="p-6 rounded-2xl bg-black border border-zinc-800">
<h3 class="text-lg font-bold mb-4 flex items-center gap-2">
<span class="w-8 h-8 rounded-full bg-blue-500/20 flex items-center justify-center text-blue-400 text-sm">2</span>
Installation
</h3>
<pre class="bg-zinc-900 rounded-xl p-4 overflow-x-auto text-sm text-gray-300"><code>git clone https://github.com/lekhanpro/spendwisev2.git
cd spendwisev2
npm install
npm run dev</code></pre>
</div>
<div class="p-6 rounded-2xl bg-black border border-zinc-800">
<h3 class="text-lg font-bold mb-4 flex items-center gap-2">
<span class="w-8 h-8 rounded-full bg-blue-500/20 flex items-center justify-center text-blue-400 text-sm">3</span>
Build for Production
</h3>
<pre class="bg-zinc-900 rounded-xl p-4 overflow-x-auto text-sm text-gray-300"><code>npm run build
npm run preview</code></pre>
</div>
</div>
</div>
</section>
<!-- Developer Section -->
<section class="py-24 px-6 border-t border-white/5">
<div class="max-w-4xl mx-auto text-center">
<h2 class="text-3xl md:text-5xl font-bold mb-4">Developer</h2>
<p class="text-gray-400 text-lg mb-12">Built with ❤️ by</p>
<div class="inline-flex flex-col items-center p-8 rounded-3xl bg-zinc-900/50 border border-zinc-800">
<div class="w-20 h-20 rounded-full bg-gradient-to-tr from-blue-600 to-purple-600 flex items-center justify-center text-3xl mb-4">👨‍💻</div>
<h3 class="text-xl font-bold mb-1">Lekhan HR</h3>
<p class="text-gray-400 mb-4">Full Stack Developer</p>
<a href="https://github.com/lekhanpro" target="_blank" class="text-blue-400 hover:text-blue-300 transition-colors flex items-center gap-2">
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 24 24"><path d="M12 0c-6.626 0-12 5.373-12 12 0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23.957-.266 1.983-.399 3.003-.404 1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576 4.765-1.589 8.199-6.086 8.199-11.386 0-6.627-5.373-12-12-12z"/></svg>
@lekhanpro
</a>
</div>
</div>
</section>
<!-- Footer -->
<footer class="py-12 px-6 border-t border-white/5 bg-black">
<div class="max-w-6xl mx-auto flex flex-col md:flex-row items-center justify-between gap-6">
<div class="flex items-center gap-3">
<div class="w-8 h-8 rounded-lg bg-gradient-to-tr from-blue-600 to-cyan-400 flex items-center justify-center">💰</div>
<span class="font-bold">SpendWise</span>
</div>
<div class="flex items-center gap-6 text-sm text-gray-400">
<a href="#" class="hover:text-white transition-colors">Privacy</a>
<a href="#" class="hover:text-white transition-colors">Terms</a>
<a href="https://github.com/lekhanpro/spendwisev2" class="hover:text-white transition-colors">GitHub</a>
</div>
<p class="text-gray-500 text-sm">© 2024 SpendWise. Open Source.</p>
</div>
</footer>
</body>
</html>