File size: 30,397 Bytes
b88cb07 |
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 543 544 545 546 547 548 549 550 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Anime Dev Portfolio</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">
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');
body {
font-family: 'Poppins', sans-serif;
background-color: #f9f9ff;
overflow-x: hidden;
}
.anime-bg {
background: linear-gradient(135deg, #6e8efb, #a777e3);
}
.character {
transition: all 0.3s ease;
}
.character:hover {
transform: translateY(-10px);
}
.skill-bar {
height: 10px;
border-radius: 5px;
background-color: #e0e0e0;
}
.skill-progress {
height: 100%;
border-radius: 5px;
background: linear-gradient(90deg, #6e8efb, #a777e3);
transition: width 1s ease-in-out;
}
.project-card {
transition: all 0.3s ease;
box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.project-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}
.floating {
animation: floating 3s ease-in-out infinite;
}
@keyframes floating {
0% { transform: translateY(0px); }
50% { transform: translateY(-15px); }
100% { transform: translateY(0px); }
}
.typewriter {
overflow: hidden;
border-right: .15em solid #6e8efb;
white-space: nowrap;
animation: typing 3.5s steps(40, end), blink-caret .75s step-end infinite;
}
@keyframes typing {
from { width: 0 }
to { width: 100% }
}
@keyframes blink-caret {
from, to { border-color: transparent }
50% { border-color: #6e8efb; }
}
</style>
</head>
<body class="min-h-screen">
<!-- Navigation -->
<nav class="anime-bg text-white shadow-lg sticky top-0 z-50">
<div class="container mx-auto px-6 py-3 flex justify-between items-center">
<div class="flex items-center space-x-2">
<i class="fas fa-code text-2xl"></i>
<span class="text-xl font-bold">AnimeDev</span>
</div>
<div class="hidden md:flex space-x-8">
<a href="#home" class="hover:text-pink-200 transition">Home</a>
<a href="#about" class="hover:text-pink-200 transition">About</a>
<a href="#skills" class="hover:text-pink-200 transition">Skills</a>
<a href="#projects" class="hover:text-pink-200 transition">Projects</a>
<a href="#contact" class="hover:text-pink-200 transition">Contact</a>
</div>
<button class="md:hidden focus:outline-none">
<i class="fas fa-bars text-2xl"></i>
</button>
</div>
</nav>
<!-- Hero Section -->
<section id="home" class="anime-bg text-white py-20">
<div class="container mx-auto px-6 flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0">
<h1 class="text-4xl md:text-6xl font-bold mb-4">Hi, I'm <span class="text-pink-200">AnimeDev</span></h1>
<div class="typewriter text-2xl md:text-3xl mb-6">Full Stack Developer & Anime Enthusiast</div>
<p class="text-lg mb-8">Coding with the power of anime characters by my side! Building beautiful, functional web applications with modern technologies.</p>
<div class="flex space-x-4">
<button class="bg-white text-purple-600 px-6 py-3 rounded-full font-semibold hover:bg-purple-100 transition">View Projects</button>
<button class="border-2 border-white text-white px-6 py-3 rounded-full font-semibold hover:bg-white hover:text-purple-600 transition">Contact Me</button>
</div>
</div>
<div class="md:w-1/2 relative">
<img src="https://i.imgur.com/JYwYQ3a.png" alt="Anime Developer" class="w-full max-w-md mx-auto floating">
<div class="absolute -bottom-10 -left-10 w-24 h-24 bg-yellow-300 rounded-full opacity-20"></div>
<div class="absolute -top-10 -right-10 w-32 h-32 bg-pink-300 rounded-full opacity-20"></div>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-20 bg-white">
<div class="container mx-auto px-6">
<h2 class="text-3xl md:text-4xl font-bold text-center mb-16">About <span class="text-purple-600">Me</span></h2>
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/3 mb-10 md:mb-0 flex justify-center">
<div class="relative">
<img src="https://i.imgur.com/8Km9tLL.png" alt="Profile" class="w-64 h-64 rounded-full border-4 border-purple-200 object-cover shadow-xl">
<div class="absolute -bottom-5 -right-5 bg-purple-100 p-3 rounded-full shadow-lg">
<i class="fas fa-heart text-purple-600 text-2xl"></i>
</div>
</div>
</div>
<div class="md:w-2/3 md:pl-12">
<h3 class="text-2xl font-semibold mb-4">Who is this anime-loving developer?</h3>
<p class="text-gray-600 mb-6">I'm a passionate full-stack developer with 5+ years of experience creating web applications. When I'm not coding, you can find me watching the latest anime series or attending cosplay events. I believe the creativity and storytelling in anime inspire me to build more imaginative and user-friendly applications.</p>
<div class="grid grid-cols-2 md:grid-cols-3 gap-4 mb-8">
<div class="bg-purple-50 p-4 rounded-lg text-center">
<i class="fas fa-code text-purple-600 text-3xl mb-2"></i>
<p class="font-semibold">100+ Projects</p>
</div>
<div class="bg-purple-50 p-4 rounded-lg text-center">
<i class="fas fa-users text-purple-600 text-3xl mb-2"></i>
<p class="font-semibold">50+ Clients</p>
</div>
<div class="bg-purple-50 p-4 rounded-lg text-center">
<i class="fas fa-award text-purple-600 text-3xl mb-2"></i>
<p class="font-semibold">10 Awards</p>
</div>
</div>
<div class="flex flex-wrap gap-4">
<div class="flex items-center">
<img src="https://i.imgur.com/VYfZJ5Z.png" alt="Naruto" class="w-12 h-12 rounded-full border-2 border-purple-200 object-cover">
<span class="ml-2 font-medium">Naruto Mode</span>
</div>
<div class="flex items-center">
<img src="https://i.imgur.com/9GkDq5W.png" alt="Luffy" class="w-12 h-12 rounded-full border-2 border-purple-200 object-cover">
<span class="ml-2 font-medium">Gear 5 Coding</span>
</div>
<div class="flex items-center">
<img src="https://i.imgur.com/8Km9tLL.png" alt="Nezuko" class="w-12 h-12 rounded-full border-2 border-purple-200 object-cover">
<span class="ml-2 font-medium">Demon Slayer Debugging</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Skills Section -->
<section id="skills" class="py-20 bg-gray-50">
<div class="container mx-auto px-6">
<h2 class="text-3xl md:text-4xl font-bold text-center mb-16">My <span class="text-purple-600">Skills</span></h2>
<div class="grid grid-cols-1 md:grid-cols-2 gap-12">
<!-- Left Column -->
<div>
<h3 class="text-2xl font-semibold mb-6 flex items-center">
<i class="fas fa-laptop-code text-purple-600 mr-3"></i>
Technical Skills
</h3>
<div class="space-y-6">
<div>
<div class="flex justify-between mb-2">
<span class="font-medium">JavaScript / TypeScript</span>
<span class="text-purple-600">95%</span>
</div>
<div class="skill-bar">
<div class="skill-progress" style="width: 95%"></div>
</div>
</div>
<div>
<div class="flex justify-between mb-2">
<span class="font-medium">React / Next.js</span>
<span class="text-purple-600">90%</span>
</div>
<div class="skill-bar">
<div class="skill-progress" style="width: 90%"></div>
</div>
</div>
<div>
<div class="flex justify-between mb-2">
<span class="font-medium">Node.js / Express</span>
<span class="text-purple-600">85%</span>
</div>
<div class="skill-bar">
<div class="skill-progress" style="width: 85%"></div>
</div>
</div>
<div>
<div class="flex justify-between mb-2">
<span class="font-medium">Python / Django</span>
<span class="text-purple-600">80%</span>
</div>
<div class="skill-bar">
<div class="skill-progress" style="width: 80%"></div>
</div>
</div>
</div>
</div>
<!-- Right Column -->
<div>
<h3 class="text-2xl font-semibold mb-6 flex items-center">
<i class="fas fa-gamepad text-purple-600 mr-3"></i>
Anime Powers
</h3>
<div class="grid grid-cols-2 gap-4">
<div class="bg-white p-4 rounded-lg shadow-md text-center character">
<img src="https://i.imgur.com/VYfZJ5Z.png" alt="Shadow Clone" class="w-16 h-16 mx-auto mb-3">
<h4 class="font-semibold">Shadow Clone Coding</h4>
<p class="text-sm text-gray-600">Multiply myself to work on multiple projects simultaneously</p>
</div>
<div class="bg-white p-4 rounded-lg shadow-md text-center character">
<img src="https://i.imgur.com/9GkDq5W.png" alt="Gear 5" class="w-16 h-16 mx-auto mb-3">
<h4 class="font-semibold">Gear 5 Debugging</h4>
<p class="text-sm text-gray-600">Find and fix bugs with cartoonish creativity</p>
</div>
<div class="bg-white p-4 rounded-lg shadow-md text-center character">
<img src="https://i.imgur.com/8Km9tLL.png" alt="Demon Slayer" class="w-16 h-16 mx-auto mb-3">
<h4 class="font-semibold">Breath of Code</h4>
<p class="text-sm text-gray-600">Write clean, efficient code with focused breathing techniques</p>
</div>
<div class="bg-white p-4 rounded-lg shadow-md text-center character">
<img src="https://i.imgur.com/JYwYQ3a.png" alt="Attack on Titan" class="w-16 h-16 mx-auto mb-3">
<h4 class="font-semibold">Titan Problem Solving</h4>
<p class="text-sm text-gray-600">Tackle giant coding challenges with strategic thinking</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Projects Section -->
<section id="projects" class="py-20 bg-white">
<div class="container mx-auto px-6">
<h2 class="text-3xl md:text-4xl font-bold text-center mb-16">My <span class="text-purple-600">Projects</span></h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Project 1 -->
<div class="project-card bg-white rounded-xl overflow-hidden border border-gray-100">
<div class="relative">
<img src="https://i.imgur.com/KYQ0xXA.png" alt="Anime Tracker" class="w-full h-48 object-cover">
<div class="absolute top-4 right-4 bg-purple-600 text-white px-3 py-1 rounded-full text-sm font-medium">React</div>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-2">AnimeTracker App</h3>
<p class="text-gray-600 mb-4">A comprehensive anime tracking application with personalized recommendations and social features.</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="bg-purple-100 text-purple-800 text-xs px-2 py-1 rounded">React</span>
<span class="bg-purple-100 text-purple-800 text-xs px-2 py-1 rounded">Node.js</span>
<span class="bg-purple-100 text-purple-800 text-xs px-2 py-1 rounded">MongoDB</span>
</div>
<div class="flex justify-between items-center">
<a href="#" class="text-purple-600 font-medium hover:underline">View Project</a>
<div class="flex space-x-2">
<i class="fas fa-star text-yellow-400"></i>
<span>4.9</span>
</div>
</div>
</div>
</div>
<!-- Project 2 -->
<div class="project-card bg-white rounded-xl overflow-hidden border border-gray-100">
<div class="relative">
<img src="https://i.imgur.com/LXhTz7S.png" alt="Cosplay Marketplace" class="w-full h-48 object-cover">
<div class="absolute top-4 right-4 bg-purple-600 text-white px-3 py-1 rounded-full text-sm font-medium">Next.js</div>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-2">Cosplay Marketplace</h3>
<p class="text-gray-600 mb-4">An e-commerce platform for anime cosplay costumes and accessories with AR try-on feature.</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="bg-purple-100 text-purple-800 text-xs px-2 py-1 rounded">Next.js</span>
<span class="bg-purple-100 text-purple-800 text-xs px-2 py-1 rounded">Stripe</span>
<span class="bg-purple-100 text-purple-800 text-xs px-2 py-1 rounded">Three.js</span>
</div>
<div class="flex justify-between items-center">
<a href="#" class="text-purple-600 font-medium hover:underline">View Project</a>
<div class="flex space-x-2">
<i class="fas fa-star text-yellow-400"></i>
<span>4.7</span>
</div>
</div>
</div>
</div>
<!-- Project 3 -->
<div class="project-card bg-white rounded-xl overflow-hidden border border-gray-100">
<div class="relative">
<img src="https://i.imgur.com/5zJgZzQ.png" alt="Manga Reader" class="w-full h-48 object-cover">
<div class="absolute top-4 right-4 bg-purple-600 text-white px-3 py-1 rounded-full text-sm font-medium">Vue</div>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-2">Manga Reader Pro</h3>
<p class="text-gray-600 mb-4">A progressive web app for reading manga with customizable reading modes and offline support.</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="bg-purple-100 text-purple-800 text-xs px-2 py-1 rounded">Vue</span>
<span class="bg-purple-100 text-purple-800 text-xs px-2 py-1 rounded">Firebase</span>
<span class="bg-purple-100 text-purple-800 text-xs px-2 py-1 rounded">PWA</span>
</div>
<div class="flex justify-between items-center">
<a href="#" class="text-purple-600 font-medium hover:underline">View Project</a>
<div class="flex space-x-2">
<i class="fas fa-star text-yellow-400"></i>
<span>4.8</span>
</div>
</div>
</div>
</div>
</div>
<div class="text-center mt-12">
<button class="bg-purple-600 text-white px-8 py-3 rounded-full font-semibold hover:bg-purple-700 transition">View All Projects</button>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-20 anime-bg text-white">
<div class="container mx-auto px-6">
<h2 class="text-3xl md:text-4xl font-bold text-center mb-16">Get In <span class="text-pink-200">Touch</span></h2>
<div class="flex flex-col md:flex-row">
<div class="md:w-1/2 mb-10 md:mb-0">
<h3 class="text-2xl font-semibold mb-6">Let's talk about your project!</h3>
<p class="mb-8">Whether you want to discuss a potential project, ask about my services, or just talk about the latest anime episode, feel free to reach out!</p>
<div class="space-y-6">
<div class="flex items-center">
<div class="bg-white bg-opacity-20 p-3 rounded-full mr-4">
<i class="fas fa-envelope text-xl"></i>
</div>
<div>
<p class="font-medium">Email</p>
<p>anime.dev@example.com</p>
</div>
</div>
<div class="flex items-center">
<div class="bg-white bg-opacity-20 p-3 rounded-full mr-4">
<i class="fas fa-phone-alt text-xl"></i>
</div>
<div>
<p class="font-medium">Phone</p>
<p>+1 (555) 123-4567</p>
</div>
</div>
<div class="flex items-center">
<div class="bg-white bg-opacity-20 p-3 rounded-full mr-4">
<i class="fas fa-map-marker-alt text-xl"></i>
</div>
<div>
<p class="font-medium">Location</p>
<p>Tokyo, Japan (Remote Worldwide)</p>
</div>
</div>
</div>
<div class="mt-10">
<h4 class="text-xl font-semibold mb-4">Follow My Anime Journey</h4>
<div class="flex space-x-4">
<a href="#" class="bg-white bg-opacity-20 w-10 h-10 rounded-full flex items-center justify-center hover:bg-opacity-30 transition">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="bg-white bg-opacity-20 w-10 h-10 rounded-full flex items-center justify-center hover:bg-opacity-30 transition">
<i class="fab fa-github"></i>
</a>
<a href="#" class="bg-white bg-opacity-20 w-10 h-10 rounded-full flex items-center justify-center hover:bg-opacity-30 transition">
<i class="fab fa-linkedin-in"></i>
</a>
<a href="#" class="bg-white bg-opacity-20 w-10 h-10 rounded-full flex items-center justify-center hover:bg-opacity-30 transition">
<i class="fab fa-instagram"></i>
</a>
</div>
</div>
</div>
<div class="md:w-1/2 md:pl-12">
<form class="bg-white bg-opacity-10 backdrop-blur-sm p-8 rounded-xl">
<div class="mb-6">
<label for="name" class="block mb-2 font-medium">Your Name</label>
<input type="text" id="name" class="w-full px-4 py-3 bg-white bg-opacity-20 border border-white border-opacity-30 rounded-lg focus:outline-none focus:ring-2 focus:ring-pink-200" placeholder="Naruto Uzumaki">
</div>
<div class="mb-6">
<label for="email" class="block mb-2 font-medium">Your Email</label>
<input type="email" id="email" class="w-full px-4 py-3 bg-white bg-opacity-20 border border-white border-opacity-30 rounded-lg focus:outline-none focus:ring-2 focus:ring-pink-200" placeholder="ninja@konoha.com">
</div>
<div class="mb-6">
<label for="subject" class="block mb-2 font-medium">Subject</label>
<input type="text" id="subject" class="w-full px-4 py-3 bg-white bg-opacity-20 border border-white border-opacity-30 rounded-lg focus:outline-none focus:ring-2 focus:ring-pink-200" placeholder="Web Development Project">
</div>
<div class="mb-6">
<label for="message" class="block mb-2 font-medium">Your Message</label>
<textarea id="message" rows="5" class="w-full px-4 py-3 bg-white bg-opacity-20 border border-white border-opacity-30 rounded-lg focus:outline-none focus:ring-2 focus:ring-pink-200" placeholder="Believe it! I need an awesome website..."></textarea>
</div>
<button type="submit" class="w-full bg-pink-200 text-purple-800 px-6 py-3 rounded-lg font-semibold hover:bg-pink-300 transition">Send Message</button>
</form>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-purple-900 text-white py-10">
<div class="container mx-auto px-6">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="mb-6 md:mb-0">
<div class="flex items-center space-x-2">
<i class="fas fa-code text-2xl"></i>
<span class="text-xl font-bold">AnimeDev</span>
</div>
<p class="mt-2 text-purple-200">Coding with anime power since 2018</p>
</div>
<div class="flex space-x-6">
<a href="#home" class="hover:text-pink-200 transition">Home</a>
<a href="#about" class="hover:text-pink-200 transition">About</a>
<a href="#skills" class="hover:text-pink-200 transition">Skills</a>
<a href="#projects" class="hover:text-pink-200 transition">Projects</a>
<a href="#contact" class="hover:text-pink-200 transition">Contact</a>
</div>
</div>
<div class="border-t border-purple-800 mt-8 pt-8 text-center text-purple-300">
<p>© 2023 AnimeDev Portfolio. All rights reserved. Made with <i class="fas fa-heart text-pink-300"></i> and <i class="fas fa-bolt text-yellow-300"></i></p>
</div>
</div>
</footer>
<!-- Floating Anime Characters -->
<div class="fixed bottom-10 right-10 z-50 hidden md:block">
<div class="relative">
<div class="bg-purple-600 text-white w-16 h-16 rounded-full flex items-center justify-center cursor-pointer shadow-xl hover:bg-purple-700 transition">
<i class="fas fa-dragon text-2xl"></i>
</div>
<div class="absolute -top-20 -right-20 w-40">
<img src="https://i.imgur.com/8Km9tLL.png" alt="Floating Anime" class="w-full floating">
</div>
</div>
</div>
<script>
// Simple animation for skill bars on scroll
document.addEventListener('DOMContentLoaded', function() {
const skillBars = document.querySelectorAll('.skill-progress');
const animateSkillBars = () => {
skillBars.forEach(bar => {
const width = bar.style.width;
bar.style.width = '0%';
setTimeout(() => {
bar.style.width = width;
}, 100);
});
};
// Intersection Observer for skill bars
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
animateSkillBars();
observer.unobserve(entry.target);
}
});
}, {threshold: 0.5});
const skillsSection = document.querySelector('#skills');
if (skillsSection) {
observer.observe(skillsSection);
}
// Smooth scrolling for navigation
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function(e) {
e.preventDefault();
const targetId = this.getAttribute('href');
const targetElement = document.querySelector(targetId);
if (targetElement) {
window.scrollTo({
top: targetElement.offsetTop - 80,
behavior: 'smooth'
});
}
});
});
// Mobile menu toggle
const mobileMenuButton = document.querySelector('button.md\\:hidden');
if (mobileMenuButton) {
mobileMenuButton.addEventListener('click', function() {
const nav = document.querySelector('.md\\:flex.space-x-8');
if (nav) {
nav.classList.toggle('hidden');
nav.classList.toggle('flex');
nav.classList.toggle('flex-col');
nav.classList.toggle('absolute');
nav.classList.toggle('top-16');
nav.classList.toggle('left-0');
nav.classList.toggle('right-0');
nav.classList.toggle('bg-purple-700');
nav.classList.toggle('p-4');
nav.classList.toggle('space-y-4');
nav.classList.toggle('space-x-8');
}
});
}
});
</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=Tame342/my-bio" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |