pinkycollie commited on
Commit
c040fa7
·
verified ·
1 Parent(s): cb41ef6

Add 2 files

Browse files
Files changed (2) hide show
  1. README.md +6 -4
  2. index.html +451 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Deaf Centered Full Stack Platform
3
- emoji: 🌖
4
  colorFrom: gray
5
- colorTo: gray
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: deaf-centered-full-stack-platform
3
+ emoji: 🐳
4
  colorFrom: gray
5
+ colorTo: red
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,451 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Deaf Enrich Platform - Architecture</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <style>
10
+ .gradient-bg {
11
+ background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
12
+ }
13
+ .card-hover {
14
+ transition: all 0.3s ease;
15
+ }
16
+ .card-hover:hover {
17
+ transform: translateY(-5px);
18
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
19
+ }
20
+ .hand-icon {
21
+ animation: wave 2.5s infinite;
22
+ transform-origin: 70% 70%;
23
+ }
24
+ @keyframes wave {
25
+ 0% { transform: rotate(0deg); }
26
+ 10% { transform: rotate(14deg); }
27
+ 20% { transform: rotate(-8deg); }
28
+ 30% { transform: rotate(14deg); }
29
+ 40% { transform: rotate(-4deg); }
30
+ 50% { transform: rotate(10deg); }
31
+ 60% { transform: rotate(0deg); }
32
+ 100% { transform: rotate(0deg); }
33
+ }
34
+ .repo-structure li {
35
+ position: relative;
36
+ padding-left: 1.5rem;
37
+ }
38
+ .repo-structure li:before {
39
+ content: "📁";
40
+ position: absolute;
41
+ left: 0;
42
+ }
43
+ .repo-structure li.file:before {
44
+ content: "📄";
45
+ }
46
+ </style>
47
+ </head>
48
+ <body class="bg-gray-50 font-sans">
49
+ <!-- Header -->
50
+ <header class="gradient-bg text-white">
51
+ <div class="container mx-auto px-6 py-16">
52
+ <div class="flex items-center justify-between">
53
+ <div>
54
+ <h1 class="text-4xl font-bold">Deaf Enrich Platform</h1>
55
+ <p class="mt-4 text-xl opacity-90">From Idea → Deploy → Production - A Deaf-centered FastAPI ecosystem</p>
56
+ </div>
57
+ <div class="text-6xl hand-icon">👋</div>
58
+ </div>
59
+ </div>
60
+ </header>
61
+
62
+ <!-- Main Content -->
63
+ <main class="container mx-auto px-6 py-12">
64
+ <!-- Vision Section -->
65
+ <section class="mb-16">
66
+ <div class="text-center mb-12">
67
+ <h2 class="text-3xl font-bold text-gray-800 mb-4">Project Vision</h2>
68
+ <p class="text-xl text-gray-600 max-w-3xl mx-auto">
69
+ A Deaf-centered full-stack platform powered by FastAPI, built to scale—from solo creators to institutions.
70
+ </p>
71
+ </div>
72
+
73
+ <div class="grid md:grid-cols-3 gap-8">
74
+ <div class="bg-white rounded-xl shadow-lg p-6 card-hover">
75
+ <div class="text-blue-500 text-3xl mb-4"><i class="fas fa-language"></i></div>
76
+ <h3 class="text-xl font-semibold mb-2">Sign Language Models</h3>
77
+ <p class="text-gray-600">Advanced AI models for ASL interpretation and translation</p>
78
+ </div>
79
+
80
+ <div class="bg-white rounded-xl shadow-lg p-6 card-hover">
81
+ <div class="text-purple-500 text-3xl mb-4"><i class="fas fa-closed-captioning"></i></div>
82
+ <h3 class="text-xl font-semibold mb-2">Captioning & Video</h3>
83
+ <p class="text-gray-600">Seamless video integrations with automatic captioning</p>
84
+ </div>
85
+
86
+ <div class="bg-white rounded-xl shadow-lg p-6 card-hover">
87
+ <div class="text-green-500 text-3xl mb-4"><i class="fas fa-briefcase"></i></div>
88
+ <h3 class="text-xl font-semibold mb-2">Employment Matching</h3>
89
+ <p class="text-gray-600">Connecting Deaf professionals with inclusive employers</p>
90
+ </div>
91
+
92
+ <div class="bg-white rounded-xl shadow-lg p-6 card-hover">
93
+ <div class="text-yellow-500 text-3xl mb-4"><i class="fas fa-store"></i></div>
94
+ <h3 class="text-xl font-semibold mb-2">Business Support</h3>
95
+ <p class="text-gray-600">Resources and tools for Deaf-owned businesses</p>
96
+ </div>
97
+
98
+ <div class="bg-white rounded-xl shadow-lg p-6 card-hover">
99
+ <div class="text-red-500 text-3xl mb-4"><i class="fas fa-vr-cardboard"></i></div>
100
+ <h3 class="text-xl font-semibold mb-2">VR/AR Readiness</h3>
101
+ <p class="text-gray-600">Immersive experiences designed for the Deaf community</p>
102
+ </div>
103
+
104
+ <div class="bg-white rounded-xl shadow-lg p-6 card-hover">
105
+ <div class="text-indigo-500 text-3xl mb-4"><i class="fas fa-plug"></i></div>
106
+ <h3 class="text-xl font-semibold mb-2">API-First Design</h3>
107
+ <p class="text-gray-600">Real-time communication with robust API endpoints</p>
108
+ </div>
109
+ </div>
110
+ </section>
111
+
112
+ <!-- Tech Stack Section -->
113
+ <section class="mb-16">
114
+ <h2 class="text-3xl font-bold text-center text-gray-800 mb-12">01. Tech Stack</h2>
115
+
116
+ <div class="overflow-x-auto">
117
+ <table class="min-w-full bg-white rounded-lg overflow-hidden">
118
+ <thead class="bg-gray-100">
119
+ <tr>
120
+ <th class="py-3 px-6 text-left font-semibold text-gray-700">Layer</th>
121
+ <th class="py-3 px-6 text-left font-semibold text-gray-700">Tech Choice</th>
122
+ <th class="py-3 px-6 text-left font-semibold text-gray-700">Why</th>
123
+ </tr>
124
+ </thead>
125
+ <tbody class="divide-y divide-gray-200">
126
+ <tr>
127
+ <td class="py-4 px-6">Backend API</td>
128
+ <td class="py-4 px-6 font-medium">FastAPI + Pydantic + Uvicorn</td>
129
+ <td class="py-4 px-6 text-gray-600">Fast, modern, async, type-safe</td>
130
+ </tr>
131
+ <tr class="bg-gray-50">
132
+ <td class="py-4 px-6">Frontend</td>
133
+ <td class="py-4 px-6 font-medium">Next.js or SvelteKit</td>
134
+ <td class="py-4 px-6 text-gray-600">SEO, accessibility, smooth UX</td>
135
+ </tr>
136
+ <tr>
137
+ <td class="py-4 px-6">AI Models</td>
138
+ <td class="py-4 px-6 font-medium">Hugging Face / Transformers</td>
139
+ <td class="py-4 px-6 text-gray-600">ASL, translation, transcription models</td>
140
+ </tr>
141
+ <tr class="bg-gray-50">
142
+ <td class="py-4 px-6">Database</td>
143
+ <td class="py-4 px-6 font-medium">PostgreSQL (Neon Tech)</td>
144
+ <td class="py-4 px-6 text-gray-600">Scalable, cloud-native</td>
145
+ </tr>
146
+ <tr>
147
+ <td class="py-4 px-6">Cache</td>
148
+ <td class="py-4 px-6 font-medium">Redis</td>
149
+ <td class="py-4 px-6 text-gray-600">Fast, transient state for real-time updates</td>
150
+ </tr>
151
+ <tr class="bg-gray-50">
152
+ <td class="py-4 px-6">Queue</td>
153
+ <td class="py-4 px-6 font-medium">Celery or Kafka via Astra Streaming</td>
154
+ <td class="py-4 px-6 text-gray-600">Job handling, async AI tasks</td>
155
+ </tr>
156
+ <tr>
157
+ <td class="py-4 px-6">Storage</td>
158
+ <td class="py-4 px-6 font-medium">Cloudflare R2 / S3-compatible</td>
159
+ <td class="py-4 px-6 text-gray-600">ASL video uploads, transcriptions</td>
160
+ </tr>
161
+ <tr class="bg-gray-50">
162
+ <td class="py-4 px-6">DevOps</td>
163
+ <td class="py-4 px-6 font-medium">Docker + GitHub Actions + Vercel / GCP</td>
164
+ <td class="py-4 px-6 text-gray-600">Clean deploy, CI/CD ready</td>
165
+ </tr>
166
+ </tbody>
167
+ </table>
168
+ </div>
169
+ </section>
170
+
171
+ <!-- Repo Structure Section -->
172
+ <section class="mb-16">
173
+ <h2 class="text-3xl font-bold text-center text-gray-800 mb-12">02. Repo Structure (Mono-Repo Layout)</h2>
174
+
175
+ <div class="bg-white rounded-xl shadow-lg p-8">
176
+ <div class="flex">
177
+ <div class="w-full">
178
+ <ul class="repo-structure space-y-2 text-gray-700">
179
+ <li>/deaf-enrich-platform/
180
+ <ul class="ml-6 mt-2 space-y-2">
181
+ <li>apps/
182
+ <ul class="ml-6 mt-2 space-y-2">
183
+ <li>api/ <span class="text-gray-500"># FastAPI app</span></li>
184
+ <li>web/ <span class="text-gray-500"># Frontend (Next.js or SvelteKit)</span></li>
185
+ <li>workers/ <span class="text-gray-500"># Background jobs (Celery or FastAPI tasks)</span></li>
186
+ </ul>
187
+ </li>
188
+ <li>shared/
189
+ <ul class="ml-6 mt-2 space-y-2">
190
+ <li>schemas/ <span class="text-gray-500"># Pydantic models, shared types</span></li>
191
+ <li>utils/ <span class="text-gray-500"># Common helpers</span></li>
192
+ <li>ai/ <span class="text-gray-500"># AI utilities (Hugging Face, transformers)</span></li>
193
+ </ul>
194
+ </li>
195
+ <li>infra/
196
+ <ul class="ml-6 mt-2 space-y-2">
197
+ <li>docker/ <span class="text-gray-500"># Dockerfiles, Compose, Cloud configs</span></li>
198
+ <li>terraform/ <span class="text-gray-500"># Infrastructure as code (if using GCP/AWS)</span></li>
199
+ </ul>
200
+ </li>
201
+ <li>tests/
202
+ <ul class="ml-6 mt-2 space-y-2">
203
+ <li>e2e/ <span class="text-gray-500"># End-to-end and unit tests</span></li>
204
+ </ul>
205
+ </li>
206
+ <li class="file">.env</li>
207
+ <li class="file">.pre-commit-config.yaml</li>
208
+ <li>.github/</li>
209
+ <li class="file">README.md</li>
210
+ <li class="file">Makefile / Taskfile <span class="text-gray-500"># For dev tasks</span></li>
211
+ </ul>
212
+ </li>
213
+ </ul>
214
+ </div>
215
+ </div>
216
+ </div>
217
+ </section>
218
+
219
+ <!-- Development Flow Section -->
220
+ <section class="mb-16">
221
+ <h2 class="text-3xl font-bold text-center text-gray-800 mb-12">03. Development Flow (Idea → Deploy → Production)</h2>
222
+
223
+ <div class="grid md:grid-cols-3 gap-8">
224
+ <div class="bg-white rounded-xl shadow-lg p-6 card-hover">
225
+ <div class="text-blue-500 text-3xl mb-4"><i class="fas fa-lightbulb"></i></div>
226
+ <h3 class="text-xl font-semibold mb-4">Idea</h3>
227
+ <ul class="space-y-2 text-gray-600">
228
+ <li class="flex items-start">
229
+ <span class="mr-2">•</span>
230
+ <span>Define ASL-powered user journeys</span>
231
+ </li>
232
+ <li class="flex items-start">
233
+ <span class="mr-2">•</span>
234
+ <span>Map personas (students, job seekers, educators)</span>
235
+ </li>
236
+ <li class="flex items-start">
237
+ <span class="mr-2">•</span>
238
+ <span>Prototype with Replit/Vercel</span>
239
+ </li>
240
+ <li class="flex items-start">
241
+ <span class="mr-2">•</span>
242
+ <span>Integrate Hugging Face ASL models</span>
243
+ </li>
244
+ </ul>
245
+ </div>
246
+
247
+ <div class="bg-white rounded-xl shadow-lg p-6 card-hover">
248
+ <div class="text-green-500 text-3xl mb-4"><i class="fas fa-code"></i></div>
249
+ <h3 class="text-xl font-semibold mb-4">Build</h3>
250
+ <ul class="space-y-2 text-gray-600">
251
+ <li class="flex items-start">
252
+ <span class="mr-2">•</span>
253
+ <span>FastAPI core APIs with OAuth2</span>
254
+ </li>
255
+ <li class="flex items-start">
256
+ <span class="mr-2">•</span>
257
+ <span>Real-time logging with Axiom</span>
258
+ </li>
259
+ <li class="flex items-start">
260
+ <span class="mr-2">•</span>
261
+ <span>i18n support (ASL/English)</span>
262
+ </li>
263
+ <li class="flex items-start">
264
+ <span class="mr-2">•</span>
265
+ <span>Deaf-first UX principles</span>
266
+ </li>
267
+ </ul>
268
+ </div>
269
+
270
+ <div class="bg-white rounded-xl shadow-lg p-6 card-hover">
271
+ <div class="text-purple-500 text-3xl mb-4"><i class="fas fa-rocket"></i></div>
272
+ <h3 class="text-xl font-semibold mb-4">Grow</h3>
273
+ <ul class="space-y-2 text-gray-600">
274
+ <li class="flex items-start">
275
+ <span class="mr-2">•</span>
276
+ <span>Add analytics & gamification</span>
277
+ </li>
278
+ <li class="flex items-start">
279
+ <span class="mr-2">•</span>
280
+ <span>GPT-guided business flows</span>
281
+ </li>
282
+ <li class="flex items-start">
283
+ <span class="mr-2">•</span>
284
+ <span>OpenAPI docs with Swagger</span>
285
+ </li>
286
+ <li class="flex items-start">
287
+ <span class="mr-2">•</span>
288
+ <span>Dockerized deployments</span>
289
+ </li>
290
+ </ul>
291
+ </div>
292
+ </div>
293
+ </section>
294
+
295
+ <!-- AI Modules Section -->
296
+ <section class="mb-16">
297
+ <h2 class="text-3xl font-bold text-center text-gray-800 mb-12">04. Must-Have AI/Deaf-Specific Modules</h2>
298
+
299
+ <div class="grid md:grid-cols-2 gap-8">
300
+ <div class="bg-white rounded-xl shadow-lg p-6 card-hover">
301
+ <div class="flex items-center mb-4">
302
+ <div class="bg-blue-100 p-3 rounded-full mr-4">
303
+ <i class="fas fa-robot text-blue-500 text-xl"></i>
304
+ </div>
305
+ <h3 class="text-xl font-semibold">ASL Avatar-to-Text and Text-to-Avatar</h3>
306
+ </div>
307
+ <p class="text-gray-600">Bidirectional translation between sign language avatars and text, enabling seamless communication.</p>
308
+ </div>
309
+
310
+ <div class="bg-white rounded-xl shadow-lg p-6 card-hover">
311
+ <div class="flex items-center mb-4">
312
+ <div class="bg-purple-100 p-3 rounded-full mr-4">
313
+ <i class="fas fa-universal-access text-purple-500 text-xl"></i>
314
+ </div>
315
+ <h3 class="text-xl font-semibold">Deaf-first UX</h3>
316
+ </div>
317
+ <p class="text-gray-600">Visual-first interface with big buttons, minimal text, and voice-off by default for optimal accessibility.</p>
318
+ </div>
319
+
320
+ <div class="bg-white rounded-xl shadow-lg p-6 card-hover">
321
+ <div class="flex items-center mb-4">
322
+ <div class="bg-green-100 p-3 rounded-full mr-4">
323
+ <i class="fas fa-closed-captioning text-green-500 text-xl"></i>
324
+ </div>
325
+ <h3 class="text-xl font-semibold">CaptionBot</h3>
326
+ </div>
327
+ <p class="text-gray-600">Upload any video to get automated captions with synchronized ASL interpretation via AI models.</p>
328
+ </div>
329
+
330
+ <div class="bg-white rounded-xl shadow-lg p-6 card-hover">
331
+ <div class="flex items-center mb-4">
332
+ <div class="bg-yellow-100 p-3 rounded-full mr-4">
333
+ <i class="fas fa-magic text-yellow-500 text-xl"></i>
334
+ </div>
335
+ <h3 class="text-xl font-semibold">Business Wizard</h3>
336
+ </div>
337
+ <p class="text-gray-600">Interactive AI prompts guide Deaf creators through starting and growing their own businesses.</p>
338
+ </div>
339
+ </div>
340
+ </section>
341
+
342
+ <!-- Deployment Section -->
343
+ <section>
344
+ <h2 class="text-3xl font-bold text-center text-gray-800 mb-12">05. Deployment Targets</h2>
345
+
346
+ <div class="grid md:grid-cols-2 gap-8">
347
+ <div class="bg-white rounded-xl shadow-lg p-6 card-hover border-l-4 border-blue-500">
348
+ <h3 class="text-xl font-semibold mb-4 flex items-center">
349
+ <i class="fas fa-flask text-blue-500 mr-3"></i> Dev & MVP
350
+ </h3>
351
+ <ul class="space-y-3 text-gray-600">
352
+ <li class="flex items-start">
353
+ <span class="bg-blue-100 text-blue-600 rounded-full p-1 mr-3">
354
+ <i class="fas fa-check text-xs"></i>
355
+ </span>
356
+ <span>Replit for rapid prototyping</span>
357
+ </li>
358
+ <li class="flex items-start">
359
+ <span class="bg-blue-100 text-blue-600 rounded-full p-1 mr-3">
360
+ <i class="fas fa-check text-xs"></i>
361
+ </span>
362
+ <span>Hugging Face Spaces for micro-inference</span>
363
+ </li>
364
+ <li class="flex items-start">
365
+ <span class="bg-blue-100 text-blue-600 rounded-full p-1 mr-3">
366
+ <i class="fas fa-check text-xs"></i>
367
+ </span>
368
+ <span>Vercel for frontend previews</span>
369
+ </li>
370
+ </ul>
371
+ </div>
372
+
373
+ <div class="bg-white rounded-xl shadow-lg p-6 card-hover border-l-4 border-purple-500">
374
+ <h3 class="text-xl font-semibold mb-4 flex items-center">
375
+ <i class="fas fa-server text-purple-500 mr-3"></i> Production
376
+ </h3>
377
+ <ul class="space-y-3 text-gray-600">
378
+ <li class="flex items-start">
379
+ <span class="bg-purple-100 text-purple-600 rounded-full p-1 mr-3">
380
+ <i class="fas fa-check text-xs"></i>
381
+ </span>
382
+ <span>Vercel for frontend hosting</span>
383
+ </li>
384
+ <li class="flex items-start">
385
+ <span class="bg-purple-100 text-purple-600 rounded-full p-1 mr-3">
386
+ <i class="fas fa-check text-xs"></i>
387
+ </span>
388
+ <span>GCP Cloud Run for FastAPI backend</span>
389
+ </li>
390
+ <li class="flex items-start">
391
+ <span class="bg-purple-100 text-purple-600 rounded-full p-1 mr-3">
392
+ <i class="fas fa-check text-xs"></i>
393
+ </span>
394
+ <span>DataStax Astra for AI + streaming at scale</span>
395
+ </li>
396
+ </ul>
397
+ </div>
398
+ </div>
399
+ </section>
400
+ </main>
401
+
402
+ <!-- Footer -->
403
+ <footer class="bg-gray-800 text-white py-12">
404
+ <div class="container mx-auto px-6">
405
+ <div class="flex flex-col md:flex-row justify-between items-center">
406
+ <div class="mb-6 md:mb-0">
407
+ <h2 class="text-2xl font-bold">Deaf Enrich Platform</h2>
408
+ <p class="mt-2 text-gray-400">Empowering the Deaf community through technology</p>
409
+ </div>
410
+ <div class="flex space-x-6">
411
+ <a href="#" class="text-gray-400 hover:text-white transition">
412
+ <i class="fab fa-github text-2xl"></i>
413
+ </a>
414
+ <a href="#" class="text-gray-400 hover:text-white transition">
415
+ <i class="fab fa-twitter text-2xl"></i>
416
+ </a>
417
+ <a href="#" class="text-gray-400 hover:text-white transition">
418
+ <i class="fab fa-linkedin text-2xl"></i>
419
+ </a>
420
+ </div>
421
+ </div>
422
+ <div class="border-t border-gray-700 mt-8 pt-8 text-center text-gray-400">
423
+ <p>© 2023 Deaf Enrich Platform. All rights reserved.</p>
424
+ </div>
425
+ </div>
426
+ </footer>
427
+
428
+ <script>
429
+ // Simple animation for cards on scroll
430
+ document.addEventListener('DOMContentLoaded', function() {
431
+ const cards = document.querySelectorAll('.card-hover');
432
+
433
+ const observer = new IntersectionObserver((entries) => {
434
+ entries.forEach(entry => {
435
+ if (entry.isIntersecting) {
436
+ entry.target.style.opacity = '1';
437
+ entry.target.style.transform = 'translateY(0)';
438
+ }
439
+ });
440
+ }, { threshold: 0.1 });
441
+
442
+ cards.forEach(card => {
443
+ card.style.opacity = '0';
444
+ card.style.transform = 'translateY(20px)';
445
+ card.style.transition = 'all 0.6s ease';
446
+ observer.observe(card);
447
+ });
448
+ });
449
+ </script>
450
+ <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=pinkycollie/deaf-centered-full-stack-platform" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
451
+ </html>