File size: 30,116 Bytes
4ff6af3 63fff87 4ff6af3 63fff87 4ff6af3 63fff87 4ff6af3 63fff87 4ff6af3 63fff87 4ff6af3 |
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 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>QuitNic | Quit Nicotine Support App</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<script>
tailwind.config = {
theme: {
extend: {
colors: {
'primary': '#4e60ff',
'secondary': '#8e9dff',
'accent': '#ff6b8b',
'light': '#f9fafb',
'dark': '#1e293b'
}
}
}
}
</script>
<style>
@keyframes fade-in-out {
0% { opacity: 0; transform: translateY(10px); }
10% { opacity: 1; transform: translateY(0); }
90% { opacity: 1; transform: translateY(0); }
100% { opacity: 0; transform: translateY(-10px); }
}
.animate-fade-in-out {
animation: fade-in-out 2s ease-in-out forwards;
}
.hero-gradient {
background: linear-gradient(135deg, #4e60ff 0%, #8e9dff 100%);
}
.progress-gradient {
background: linear-gradient(to right, #4e60ff, #8e9dff);
}
.calendar-grid {
display: grid;
grid-template-columns: repeat(7, 1fr);
gap: 8px;
}
.tip-card:hover {
transform: translateY(-5px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.stat-card {
transition: all 0.3s ease;
}
.stat-card:hover {
transform: scale(1.03);
}
</style>
</head>
<body class="bg-light text-dark font-sans">
<!-- Main App Container -->
<div class="max-w-md mx-auto bg-white min-h-screen shadow-lg relative overflow-hidden">
<!-- Header -->
<header class="hero-gradient text-white px-6 py-8">
<div class="flex justify-between items-center mb-10">
<div class="flex items-center">
<div class="w-12 h-12 rounded-full bg-white flex items-center justify-center">
<i class="fas fa-smoking-ban text-primary text-2xl"></i>
</div>
<h1 class="ml-4 text-2xl font-bold">QuitNic</h1>
</div>
<div class="w-10 h-10 rounded-full bg-white/20 flex items-center justify-center">
<i class="fas fa-user text-white"></i>
</div>
</div>
<div class="mb-6">
<h2 class="text-2xl font-bold mb-2">Welcome Back, Michael!</h2>
<p class="opacity-90">Today is day <span class="font-bold">14</span> of being nicotine-free.</p>
</div>
</header>
<!-- Stats Cards -->
<div class="px-4 -mt-6 mb-6">
<div class="flex space-x-4 overflow-x-auto pb-4 px-1 -mx-1">
<div class="stat-card bg-white p-4 rounded-xl shadow-lg min-w-[180px] flex-shrink-0">
<div class="flex items-center mb-2">
<div class="bg-primary/10 text-primary w-10 h-10 rounded-lg flex items-center justify-center mr-2">
<i class="fas fa-calendar-check"></i>
</div>
<span class="text-lg font-bold">14 Days</span>
</div>
<p class="text-gray-500 text-sm">Current streak</p>
</div>
<div class="stat-card bg-white p-4 rounded-xl shadow-lg min-w-[180px] flex-shrink-0">
<div class="flex items-center mb-2">
<div class="bg-secondary/10 text-secondary w-10 h-10 rounded-lg flex items-center justify-center mr-2">
<i class="fas fa-coins"></i>
</div>
<span class="text-lg font-bold">$124</span>
</div>
<p class="text-gray-500 text-sm">Money saved</p>
</div>
</div>
</div>
<!-- Main Navigation -->
<nav class="flex p-4 bg-white border-b">
<button class="flex-1 text-center py-2 border-b-2 border-primary text-primary font-medium">
<i class="fas fa-home mb-1 block"></i>
<span class="text-xs">Home</span>
</button>
<button class="flex-1 text-center py-2 text-gray-500">
<i class="fas fa-clipboard-list mb-1 block"></i>
<span class="text-xs">Tips</span>
</button>
<button class="flex-1 text-center py-2 text-gray-500">
<i class="fas fa-chart-line mb-1 block"></i>
<span class="text-xs">Progress</span>
</button>
<button class="flex-1 text-center py-2 text-gray-500">
<i class="fas fa-cog mb-1 block"></i>
<span class="text-xs">Settings</span>
</button>
</nav>
<!-- Main Content -->
<main class="p-4">
<!-- Quick Actions -->
<div class="mb-8">
<h3 class="font-bold text-lg mb-4 flex items-center">
<i class="fas fa-bolt text-accent mr-2"></i> Quick Actions
</h3>
<div class="grid grid-cols-2 gap-4">
<a href="#" class="bg-primary/10 text-primary p-4 rounded-lg text-center transition hover:bg-primary/20">
<i class="fas fa-notes-medical block text-2xl mb-2"></i>
Log Cravings
</a>
<a href="#" class="bg-secondary/10 text-secondary p-4 rounded-lg text-center transition hover:bg-secondary/20">
<i class="fas fa-book block text-2xl mb-2"></i>
Journal
</a>
<a href="#" class="bg-green-100 text-green-600 p-4 rounded-lg text-center transition hover:bg-green-200">
<i class="fas fa-users block text-2xl mb-2"></i>
Community
</a>
<a href="#" class="bg-purple-100 text-purple-600 p-4 rounded-lg text-center transition hover:bg-purple-200">
<i class="fas fa-award block text-2xl mb-2"></i>
Rewards
</a>
</div>
</div>
<!-- Cravings Tracker -->
<div class="mb-8">
<h3 class="font-bold text-lg mb-4 flex items-center">
<i class="fas fa-heartbeat text-red-500 mr-2"></i> Cravings Tracker
</h3>
<div class="bg-white p-4 rounded-lg shadow-sm">
<div class="flex justify-between items-center mb-3">
<h4 class="font-medium">Today's Cravings</h4>
<span class="text-sm text-gray-500">3 logged</span>
</div>
<div class="space-y-3">
<div class="flex items-center">
<div class="w-3 h-3 rounded-full bg-red-500 mr-3"></div>
<div class="flex-1">
<div class="flex justify-between">
<span>Morning</span>
<span class="text-sm text-gray-500">8:30 AM</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-1.5 mt-1">
<div class="bg-red-500 h-1.5 rounded-full" style="width: 70%"></div>
</div>
</div>
</div>
<div class="flex items-center">
<div class="w-3 h-3 rounded-full bg-yellow-500 mr-3"></div>
<div class="flex-1">
<div class="flex justify-between">
<span>Afternoon</span>
<span class="text-sm text-gray-500">2:15 PM</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-1.5 mt-1">
<div class="bg-yellow-500 h-1.5 rounded-full" style="width: 40%"></div>
</div>
</div>
</div>
<div class="flex items-center">
<div class="w-3 h-3 rounded-full bg-green-500 mr-3"></div>
<div class="flex-1">
<div class="flex justify-between">
<span>Evening</span>
<span class="text-sm text-gray-500">7:45 PM</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-1.5 mt-1">
<div class="bg-green-500 h-1.5 rounded-full" style="width: 20%"></div>
</div>
</div>
</div>
</div>
<button class="w-full mt-4 bg-gray-100 hover:bg-gray-200 text-gray-700 py-2 rounded-lg text-sm font-medium transition">
View Full Report
</button>
</div>
</div>
<!-- Recommended Tips -->
<div class="mb-8">
<div class="flex justify-between items-center mb-4">
<h3 class="font-bold text-lg flex items-center">
<i class="fas fa-lightbulb text-yellow-400 mr-2"></i> Tips for You
</h3>
<a href="#" class="text-primary text-sm">See All</a>
</div>
<div class="space-y-4">
<!-- Tip Card 1 -->
<div class="tip-card bg-white border p-4 rounded-lg shadow-sm transition-all">
<div class="flex items-start mb-3">
<div class="bg-purple-100 text-purple-600 w-8 h-8 rounded-full flex items-center justify-center mr-3">
<i class="fas fa-running"></i>
</div>
<h4 class="font-semibold text-lg text-dark">Managing Tired Muscles?</h4>
</div>
<p class="text-gray-600 mb-4">Try gentle stretching exercises to relieve muscle fatigue caused by nicotine withdrawal.</p>
<div class="flex justify-between">
<span class="text-xs bg-green-50 text-green-600 px-2 py-1 rounded-full">Physical</span>
<a href="#" class="text-primary text-sm font-medium">Read More</a>
</div>
</div>
<!-- Tip Card 2 -->
<div class="tip-card bg-white border p-4 rounded-lg shadow-sm transition-all">
<div class="flex items-start mb-3">
<div class="bg-blue-100 text-blue-600 w-8 h-8 rounded-full flex items-center justify-center mr-3">
<i class="fas fa-brain"></i>
</div>
<h4 class="font-semibold text-lg text-dark">Beat Evening Cravings</h4>
</div>
<p class="text-gray-600 mb-4">Replace your after-dinner cigarette with a new calming ritual like herbal tea or journaling.</p>
<div class="flex justify-between">
<span class="text-xs bg-amber-50 text-amber-600 px-2 py-1 rounded-full">Mental</span>
<a href="#" class="text-primary text-sm font-medium">Read More</a>
</div>
</div>
</div>
</div>
<!-- Your Progress -->
<div class="mb-8">
<div class="flex justify-between items-center mb-4">
<h3 class="font-bold text-lg flex items-center">
<i class="fas fa-calendar-alt text-secondary mr-2"></i> Your Progress
</h3>
<a href="#" class="text-primary text-sm">Detailed Stats</a>
</div>
<!-- Progress Summary -->
<div class="p-4 rounded-lg border-0 progress-gradient text-white mb-4">
<h4 class="font-semibold mb-2">Daily Goal Achieved!</h4>
<p class="text-sm mb-4">You've resisted 3 cravings today already.</p>
<div class="w-full bg-white/30 rounded-full h-2 mb-2">
<div class="bg-white h-2 rounded-full" style="width: 75%"></div>
</div>
<p class="text-xs opacity-80">You're 75% toward your daily goal</p>
</div>
<!-- Calendar View -->
<div class="mb-4">
<h4 class="font-medium mb-2">Smoke-Free Calendar</h4>
<div class="calendar-grid mb-2">
<div class="text-center text-sm py-1">S</div>
<div class="text-center text-sm py-1">M</div>
<div class="text-center text-sm py-1">T</div>
<div class="text-center text-sm py-1">W</div>
<div class="text-center text-sm py-1">T</div>
<div class="text-center text-sm py-1">F</div>
<div class="text-center text-sm py-1">S</div>
</div>
<div class="calendar-grid">
<div class="bg-gray-100 aspect-square rounded-lg"></div>
<div class="bg-gray-100 aspect-square rounded-lg"></div>
<div class="bg-gray-100 aspect-square rounded-lg"></div>
<div class="aspect-square rounded-lg flex items-center justify-center">
<div class="bg-secondary/10 border-b-2 border-secondary w-6 h-6 rounded-md flex items-center justify-center">
<span class="text-xs font-semibold">1</span>
</div>
</div>
<div class="bg-gradient-to-r from-primary to-secondary aspect-square rounded-lg flex items-center justify-center text-white">
<span class="font-bold">2</span>
</div>
<div class="bg-white border-b-2 border-primary aspect-square rounded-lg flex items-center justify-center">
<span class="text-xs font-semibold">3</span>
</div>
<div class="bg-white border-b-2 border-primary aspect-square rounded-lg flex items-center justify-center">
<span class="text-xs font-semibold">4</span>
</div>
<div class="bg-white border-b-2 border-primary aspect-square rounded-lg flex items-center justify-center">
<span class="text-xs font-semibold">5</span>
</div>
<div class="bg-white border-b-2 border-primary aspect-square rounded-lg flex items-center justify-center">
<span class="text-xs font-semibold">6</span>
</div>
<div class="bg-gradient-to-r from-primary to-secondary aspect-square rounded-lg flex items-center justify-center text-white">
<span class="font-bold">7</span>
</div>
<div class="bg-gradient-to-r from-primary to-secondary aspect-square rounded-lg flex items-center justify-center text-white">
<span class="font-bold">8</span>
</div>
<div class="bg-gradient-to-r from-primary to-secondary aspect-square rounded-lg flex items-center justify-center text-white">
<span class="font-bold">9</span>
</div>
<div class="bg-white border-b-2 border-primary aspect-square rounded-lg flex items-center justify-center">
<span class="text-xs font-semibold">10</span>
</div>
<div class="bg-primary/10 aspect-square rounded-lg flex items-center justify-center text-primary">
<span class="font-semibold">11</span>
</div>
<div class="bg-white border-b-2 border-primary aspect-square rounded-lg flex items-center justify-center">
<span class="text-xs font-semibold">12</span>
</div>
<div class="bg-white border-b-2 border-primary aspect-square rounded-lg flex items-center justify-center">
<span class="text-xs font-semibold">13</span>
</div>
<div class="bg-gradient-to-r from-primary to-secondary aspect-square rounded-lg flex items-center justify-center text-white">
<span class="font-bold">14</span>
</div>
<div class="border-2 border-gray-300 aspect-square rounded-lg"></div>
<div class="border-2 border-gray-300 aspect-square rounded-lg"></div>
<div class="border-2 border-gray-300 aspect-square rounded-lg"></div>
<div class="border-2 border-gray-300 aspect-square rounded-lg"></div>
<div class="border-2 border-gray-300 aspect-square rounded-lg"></div>
<div class="border-2 border-gray-300 aspect-square rounded-lg"></div>
</div>
</div>
<div class="flex justify-center mt-3">
<div class="flex items-center mr-4">
<div class="w-3 h-3 rounded-full bg-gradient-to-r from-primary to-secondary mr-1"></div>
<span class="text-xs">Nicotine-free</span>
</div>
<div class="flex items-center mr-4">
<div class="w-3 h-3 rounded-full bg-secondary/10 border-b-2 border-secondary mr-1"></div>
<span class="text-xs">Mild craving</span>
</div>
<div class="flex items-center">
<div class="w-3 h-3 rounded-full bg-primary/10 mr-1"></div>
<span class="text-xs">Strong craving</span>
</div>
</div>
</div>
<!-- Journal Preview -->
<div class="mb-8">
<h3 class="font-bold text-lg mb-4 flex items-center">
<i class="fas fa-book text-blue-500 mr-2"></i> Recent Journal Entry
</h3>
<div class="bg-white p-4 rounded-lg shadow-sm">
<div class="flex justify-between items-center mb-3">
<h4 class="font-medium">Day 14 Reflection</h4>
<span class="text-sm text-gray-500">Yesterday</span>
</div>
<p class="text-gray-600 mb-4 line-clamp-3">
Today was challenging but rewarding. I had three strong cravings but managed to overcome them by going for a walk and drinking water. I'm noticing my sense of smell is improving already...
</p>
<div class="flex space-x-2">
<button class="text-primary text-sm font-medium">Read More</button>
<button class="text-gray-500 text-sm font-medium">New Entry</button>
</div>
</div>
</div>
<!-- Community Support -->
<div class="mb-8">
<h3 class="font-bold text-lg mb-4 flex items-center">
<i class="fas fa-users text-green-500 mr-2"></i> Community Support
</h3>
<div class="bg-white p-4 rounded-lg shadow-sm">
<div class="flex items-center mb-4">
<div class="w-10 h-10 rounded-full bg-green-100 flex items-center justify-center mr-3">
<i class="fas fa-comments text-green-500"></i>
</div>
<div>
<h4 class="font-medium">Connect with Others</h4>
<p class="text-sm text-gray-500">Join discussions and share your journey</p>
</div>
</div>
<div class="grid grid-cols-3 gap-2">
<div class="bg-blue-50 text-blue-600 p-2 rounded text-center text-sm">
<i class="fas fa-comment-dots block mb-1"></i>
<span>12 New</span>
</div>
<div class="bg-purple-50 text-purple-600 p-2 rounded text-center text-sm">
<i class="fas fa-heart block mb-1"></i>
<span>8 Likes</span>
</div>
<div class="bg-green-50 text-green-600 p-2 rounded text-center text-sm">
<i class="fas fa-user-friends block mb-1"></i>
<span>24 Online</span>
</div>
</div>
<button class="w-full mt-4 bg-green-100 hover:bg-green-200 text-green-700 py-2 rounded-lg text-sm font-medium transition">
Join Community
</button>
</div>
</div>
<!-- Motivational Quote -->
<div class="bg-gradient-to-r from-accent to-pink-400 text-white rounded-lg p-4 mb-8">
<div class="flex justify-between items-start mb-2">
<i class="fas fa-quote-left text-white/40 text-xl"></i>
<button class="text-white/70 hover:text-white">
<i class="fas fa-sync-alt"></i>
</button>
</div>
<p class="font-medium mb-3">Every craving you overcome is building a healthier, stronger version of yourself.</p>
<div class="text-right text-white/80 text-sm">- QuitNic Team</div>
</div>
</main>
<!-- Floating Action Button -->
<div class="fixed bottom-24 right-4 z-10">
<button class="w-14 h-14 rounded-full bg-primary shadow-lg flex items-center justify-center group">
<i class="fas fa-plus text-white text-2xl group-hover:rotate-90 transition-transform"></i>
</button>
</div>
<!-- Health Benefits Notification -->
<div class="fixed bottom-40 right-4 z-10 w-64 bg-white rounded-lg shadow-xl p-4 animate-bounce">
<div class="flex items-start mb-2">
<div class="bg-green-100 text-green-600 w-8 h-8 rounded-full flex items-center justify-center mr-2">
<i class="fas fa-heartbeat"></i>
</div>
<div>
<h4 class="font-medium text-sm">Health Update</h4>
<p class="text-xs text-gray-500">Your circulation has improved by 15% since quitting!</p>
</div>
</div>
<button class="text-primary text-xs font-medium">Dismiss</button>
</div>
<!-- Bottom Navigation -->
<div class="fixed bottom-0 left-0 right-0 bg-white border-t">
<div class="flex justify-around">
<a href="#" class="flex flex-col items-center py-3 px-6 text-primary">
<i class="fas fa-home text-lg mb-1"></i>
<span class="text-xs">Home</span>
</a>
<a href="#" class="flex flex-col items-center py-3 px-6 text-gray-500">
<i class="fas fa-clipboard-list text-lg mb-1"></i>
<span class="text-xs">Tips</span>
</a>
<a href="#" class="flex flex-col items-center py-3 px-6 text-gray-500">
<i class="fas fa-chart-line text-lg mb-1"></i>
<span class="text-xs">Progress</span>
</a>
<a href="#" class="flex flex-col items-center py-3 px-6 text-gray-500">
<i class="fas fa-cog text-lg mb-1"></i>
<span class="text-xs">Settings</span>
</a>
</div>
</div>
</div>
<script>
document.addEventListener('DOMContentLoaded', function() {
// Navigation handling
const navLinks = document.querySelectorAll('nav button, .fixed.bottom-0 a');
navLinks.forEach(link => {
link.addEventListener('click', function(e) {
e.preventDefault();
// Remove active state from all links
navLinks.forEach(l => {
l.classList.remove('text-primary', 'border-primary', 'font-medium');
l.classList.add('text-gray-500');
});
// Add active state to clicked link
this.classList.remove('text-gray-500');
this.classList.add('text-primary');
if(this.closest('nav')) {
this.classList.add('border-b-2', 'font-medium');
}
// Here you would normally load the appropriate content
console.log(`Navigating to: ${this.querySelector('span').textContent}`);
});
});
// Quick Actions handling
const quickActions = document.querySelectorAll('.grid.grid-cols-2 a');
quickActions.forEach(action => {
action.addEventListener('click', function(e) {
e.preventDefault();
const actionName = this.textContent.trim();
console.log(`Quick action: ${actionName}`);
// Show success feedback
const feedback = document.createElement('div');
feedback.className = 'fixed top-20 left-1/2 -translate-x-1/2 bg-green-500 text-white px-4 py-2 rounded-lg shadow-lg animate-fade-in-out';
feedback.textContent = `${actionName} started!`;
document.body.appendChild(feedback);
setTimeout(() => feedback.remove(), 2000);
});
});
// Cravings calendar handling
const calendarDays = document.querySelectorAll('[class*="aspect-square"]');
calendarDays.forEach(day => {
day.addEventListener('click', function() {
if(this.classList.contains('border-b-2')) {
this.classList.remove('border-b-2', 'border-primary');
this.classList.add('bg-gradient-to-r', 'from-primary', 'to-secondary', 'text-white');
} else if(this.classList.contains('bg-gradient-to-r')) {
this.classList.remove('bg-gradient-to-r', 'from-primary', 'to-secondary', 'text-white');
this.classList.add('bg-primary/10', 'text-primary');
} else {
this.classList.add('border-b-2', 'border-primary');
}
});
});
// Floating action button
const fab = document.querySelector('.fixed.bottom-24 button');
fab.addEventListener('click', function() {
console.log('FAB clicked - opening action menu');
// Here you would show a modal or menu with additional actions
});
// Dismiss health notification
const dismissBtn = document.querySelector('.fixed.bottom-40 button');
dismissBtn.addEventListener('click', function(e) {
e.preventDefault();
this.closest('.fixed.bottom-40').remove();
});
// Update stats daily (simulated)
setTimeout(() => {
document.querySelectorAll('.stat-card span')[0].textContent = '15 Days';
document.querySelectorAll('.stat-card span')[1].textContent = '$132';
}, 3000);
});
</script>
<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=Ptwo/quitnic" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |