File size: 26,720 Bytes
2e1e324 | 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 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Elevate Fitness | Transform Your Body, Elevate Your Life</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>
.hero-gradient {
background: linear-gradient(135deg, rgba(30,64,175,0.9) 0%, rgba(220,38,38,0.85) 100%);
}
.pulse-animation {
animation: pulse 2s infinite;
}
@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.05); }
100% { transform: scale(1); }
}
</style>
</head>
<body class="font-sans bg-gray-50">
<!-- Navigation -->
<nav class="bg-white shadow-lg sticky top-0 z-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-16">
<div class="flex items-center">
<div class="flex-shrink-0 flex items-center">
<i class="fas fa-dumbbell text-red-600 text-2xl mr-2"></i>
<span class="text-xl font-bold text-gray-900">ELEVATE FITNESS</span>
</div>
</div>
<div class="hidden md:flex items-center space-x-8">
<a href="#about" class="text-gray-900 hover:text-red-600 px-3 py-2 font-medium">About</a>
<a href="#facilities" class="text-gray-900 hover:text-red-600 px-3 py-2 font-medium">Facilities</a>
<a href="#membership" class="text-gray-900 hover:text-red-600 px-3 py-2 font-medium">Membership</a>
<a href="#contact" class="bg-red-600 text-white px-6 py-2 rounded-full font-medium hover:bg-red-700 transition duration-300">Join Now</a>
</div>
<div class="md:hidden flex items-center">
<button class="text-gray-900">
<i class="fas fa-bars text-2xl"></i>
</button>
</div>
</div>
</div>
</nav>
<!-- Hero Section -->
<header class="hero-gradient text-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-24 md:py-32">
<div class="md:flex items-center">
<div class="md:w-1/2 mb-12 md:mb-0">
<h1 class="text-4xl md:text-5xl lg:text-6xl font-bold leading-tight mb-6">YOUR STRONGEST SELF STARTS HERE</h1>
<p class="text-xl mb-8">At Elevate Fitness, we don't just change bodies - we transform lives. Our state-of-the-art facility and expert coaches are ready to help you smash your fitness goals.</p>
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
<a href="#membership" class="bg-white text-red-600 px-8 py-4 rounded-full font-bold text-lg text-center hover:bg-gray-100 transition duration-300 pulse-animation">JOIN TODAY</a>
<a href="#contact" class="border-2 border-white text-white px-8 py-4 rounded-full font-bold text-lg text-center hover:bg-white hover:text-red-600 transition duration-300">BOOK A TOUR</a>
</div>
</div>
<div class="md:w-1/2 flex justify-center">
<img src="https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Fitness training" class="rounded-lg shadow-2xl max-w-md w-full">
</div>
</div>
</div>
</header>
<!-- About Section -->
<section id="about" class="py-20 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 mb-4">MORE THAN A GYM - IT'S A COMMUNITY</h2>
<div class="w-24 h-1 bg-red-600 mx-auto"></div>
</div>
<div class="md:flex items-center">
<div class="md:w-1/2 mb-12 md:mb-0 md:pr-12">
<p class="text-lg text-gray-700 mb-6">Welcome to Elevate Fitness, where every workout brings you one step closer to the best version of yourself. We're not just about lifting weights - we're about lifting spirits, confidence, and potential.</p>
<p class="text-lg text-gray-700 mb-6">Founded by fitness enthusiasts who were tired of impersonal gym experiences, we've created a space where members feel supported, challenged, and celebrated. Whether you're taking your first fitness steps or training for your tenth marathon, you belong here.</p>
<p class="text-lg text-gray-700">Our philosophy is simple: sustainable results come from smart training, proper nutrition, and a positive mindset. Let us guide you on your journey.</p>
</div>
<div class="md:w-1/2">
<div class="grid grid-cols-2 gap-4">
<div class="bg-gray-100 p-6 rounded-lg">
<i class="fas fa-heartbeat text-red-600 text-4xl mb-4"></i>
<h3 class="text-xl font-bold mb-2">Proven Results</h3>
<p class="text-gray-700">90% of members report measurable progress within 8 weeks</p>
</div>
<div class="bg-gray-100 p-6 rounded-lg">
<i class="fas fa-users text-red-600 text-4xl mb-4"></i>
<h3 class="text-xl font-bold mb-2">Expert Coaches</h3>
<p class="text-gray-700">Certified professionals with 10+ years combined experience</p>
</div>
<div class="bg-gray-100 p-6 rounded-lg">
<i class="fas fa-trophy text-red-600 text-4xl mb-4"></i>
<h3 class="text-xl font-bold mb-2">Cutting-Edge</h3>
<p class="text-gray-700">Top-tier equipment from leading fitness brands</p>
</div>
<div class="bg-gray-100 p-6 rounded-lg">
<i class="fas fa-smile text-red-600 text-4xl mb-4"></i>
<h3 class="text-xl font-bold mb-2">Supportive Community</h3>
<p class="text-gray-700">Make friends, stay motivated, achieve together</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Facilities Section -->
<section id="facilities" class="py-20 bg-gray-100">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 mb-4">WORLD-CLASS FACILITIES & CLASSES</h2>
<div class="w-24 h-1 bg-red-600 mx-auto"></div>
</div>
<div class="grid md:grid-cols-3 gap-8 mb-12">
<div class="bg-white rounded-lg overflow-hidden shadow-lg transform transition duration-500 hover:scale-105">
<img src="https://images.unsplash.com/photo-1571902943202-507ec2618e8f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1075&q=80" alt="Strength Training" class="w-full h-48 object-cover">
<div class="p-6">
<h3 class="text-xl font-bold mb-3">Strength Training</h3>
<p class="text-gray-700 mb-4">Build power and confidence with our comprehensive strength area featuring free weights, machines, and power racks.</p>
<ul class="space-y-2">
<li class="flex items-center"><i class="fas fa-check text-red-600 mr-2"></i> Olympic lifting platforms</li>
<li class="flex items-center"><i class="fas fa-check text-red-600 mr-2"></i> Specialty bars</li>
<li class="flex items-center"><i class="fas fa-check text-red-600 mr-2"></i> Personal coaching available</li>
</ul>
</div>
</div>
<div class="bg-white rounded-lg overflow-hidden shadow-lg transform transition duration-500 hover:scale-105">
<img src="https://images.unsplash.com/photo-1571019614242-c816c32a71d3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1074&q=80" alt="Cardio Zone" class="w-full h-48 object-cover">
<div class="p-6">
<h3 class="text-xl font-bold mb-3">Cardio Zone</h3>
<p class="text-gray-700 mb-4">Burn calories and boost endurance with our premium cardio equipment featuring immersive entertainment options.</p>
<ul class="space-y-2">
<li class="flex items-center"><i class="fas fa-check text-red-600 mr-2"></i> Treadmills with virtual trails</li>
<li class="flex items-center"><i class="fas fa-check text-red-600 mr-2"></i> Stairmasters & rowers</li>
<li class="flex items-center"><i class="fas fa-check text-red-600 mr-2"></i> Heart rate monitoring</li>
</ul>
</div>
</div>
<div class="bg-white rounded-lg overflow-hidden shadow-lg transform transition duration-500 hover:scale-105">
<img src="https://images.unsplash.com/photo-1545205597-3d9d02c29597?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Group Classes" class="w-full h-48 object-cover">
<div class="p-6">
<h3 class="text-xl font-bold mb-3">Group Classes</h3>
<p class="text-gray-700 mb-4">Our high-energy classes combine fun with serious results. Something for every fitness level and interest.</p>
<ul class="space-y-2">
<li class="flex items-center"><i class="fas fa-check text-red-600 mr-2"></i> HIIT & Circuit Training</li>
<li class="flex items-center"><i class="fas fa-check text-red-600 mr-2"></i> Yoga & Mobility</li>
<li class="flex items-center"><i class="fas fa-check text-red-600 mr-2"></i> Spin & Boxing</li>
</ul>
</div>
</div>
</div>
<div class="text-center">
<a href="#contact" class="inline-block bg-red-600 text-white px-8 py-3 rounded-full font-bold hover:bg-red-700 transition duration-300">VIEW CLASS SCHEDULE</a>
</div>
</div>
</section>
<!-- Membership Section -->
<section id="membership" class="py-20 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 mb-4">FIND YOUR PERFECT MEMBERSHIP</h2>
<p class="text-xl text-gray-700 max-w-3xl mx-auto">Flexible options designed to fit your lifestyle and budget. No long-term contracts, just results.</p>
<div class="w-24 h-1 bg-red-600 mx-auto mt-4"></div>
</div>
<div class="grid md:grid-cols-3 gap-8 max-w-5xl mx-auto">
<div class="bg-gray-100 rounded-lg p-8 transform transition duration-500 hover:shadow-xl">
<h3 class="text-2xl font-bold mb-4">Basic</h3>
<p class="text-4xl font-bold mb-6">$49<span class="text-lg font-normal">/month</span></p>
<ul class="space-y-3 mb-8">
<li class="flex items-center"><i class="fas fa-check text-green-500 mr-2"></i> Gym Access</li>
<li class="flex items-center"><i class="fas fa-check text-green-500 mr-2"></i> Free Wi-Fi</li>
<li class="flex items-center"><i class="fas fa-check text-green-500 mr-2"></i> Locker Room</li>
<li class="flex items-center text-gray-400"><i class="fas fa-times text-red-500 mr-2"></i> Group Classes</li>
<li class="flex items-center text-gray-400"><i class="fas fa-times text-red-500 mr-2"></i> Personal Training</li>
</ul>
<a href="#contact" class="block text-center bg-gray-300 text-gray-800 py-3 rounded-full font-medium hover:bg-gray-400 transition duration-300">GET STARTED</a>
</div>
<div class="bg-red-600 text-white rounded-lg p-8 transform transition duration-500 hover:shadow-xl relative">
<div class="absolute top-0 right-0 bg-yellow-400 text-gray-900 px-4 py-1 text-sm font-bold rounded-bl-lg">POPULAR</div>
<h3 class="text-2xl font-bold mb-4">Premium</h3>
<p class="text-4xl font-bold mb-6">$79<span class="text-lg font-normal">/month</span></p>
<ul class="space-y-3 mb-8">
<li class="flex items-center"><i class="fas fa-check text-white mr-2"></i> All Basic Benefits</li>
<li class="flex items-center"><i class="fas fa-check text-white mr-2"></i> Unlimited Classes</li>
<li class="flex items-center"><i class="fas fa-check text-white mr-2"></i> Towel Service</li>
<li class="flex items-center"><i class="fas fa-check text-white mr-2"></i> Nutrition Guide</li>
<li class="flex items-center text-gray-200"><i class="fas fa-times mr-2"></i> Personal Training</li>
</ul>
<a href="#contact" class="block text-center bg-white text-red-600 py-3 rounded-full font-medium hover:bg-gray-100 transition duration-300">GET STARTED</a>
</div>
<div class="bg-gray-100 rounded-lg p-8 transform transition duration-500 hover:shadow-xl">
<h3 class="text-2xl font-bold mb-4">VIP</h3>
<p class="text-4xl font-bold mb-6">$149<span class="text-lg font-normal">/month</span></p>
<ul class="space-y-3 mb-8">
<li class="flex items-center"><i class="fas fa-check text-green-500 mr-2"></i> All Premium Benefits</li>
<li class="flex items-center"><i class="fas fa-check text-green-500 mr-2"></i> 4 Personal Training</li>
<li class="flex items-center"><i class="fas fa-check text-green-500 mr-2"></i> Recovery Lounge</li>
<li class="flex items-center"><i class="fas fa-check text-green-500 mr-2"></i> Priority Booking</li>
<li class="flex items-center"><i class="fas fa-check text-green-500 mr-2"></i> Exclusive Events</li>
</ul>
<a href="#contact" class="block text-center bg-gray-300 text-gray-800 py-3 rounded-full font-medium hover:bg-gray-400 transition duration-300">GET STARTED</a>
</div>
</div>
<div class="mt-16 bg-blue-50 rounded-lg p-8 max-w-4xl mx-auto">
<div class="md:flex items-center">
<div class="md:w-2/3 mb-6 md:mb-0">
<h3 class="text-2xl font-bold text-gray-900 mb-2">Not sure which plan is right for you?</h3>
<p class="text-gray-700">Schedule a free consultation with one of our fitness experts who can assess your goals and recommend the perfect program.</p>
</div>
<div class="md:w-1/3 text-center md:text-right">
<a href="#contact" class="inline-block bg-red-600 text-white px-6 py-3 rounded-full font-medium hover:bg-red-700 transition duration-300">FREE CONSULTATION</a>
</div>
</div>
</div>
</div>
</section>
<!-- Testimonials -->
<section class="py-20 bg-gray-900 text-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">OUR MEMBERS SAY IT BEST</h2>
<div class="w-24 h-1 bg-red-600 mx-auto"></div>
</div>
<div class="grid md:grid-cols-3 gap-8">
<div class="bg-gray-800 p-8 rounded-lg">
<div class="flex items-center mb-4">
<div class="text-yellow-400 text-xl mr-2">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
<p class="text-gray-300 mb-6">"I've tried 5 different gyms in the past decade and Elevate is by far the best. The coaches actually care about your progress and the community keeps me motivated."</p>
<div class="flex items-center">
<img src="https://randomuser.me/api/portraits/women/44.jpg" alt="Sarah J." class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold">Sarah J.</h4>
<p class="text-sm text-gray-400">Member for 2 years</p>
</div>
</div>
</div>
<div class="bg-gray-800 p-8 rounded-lg">
<div class="flex items-center mb-4">
<div class="text-yellow-400 text-xl mr-2">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
<p class="text-gray-300 mb-6">"Lost 28 pounds in 4 months thanks to the amazing trainers and group classes. Never thought I'd enjoy working out this much!"</p>
<div class="flex items-center">
<img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Michael T." class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold">Michael T.</h4>
<p class="text-sm text-gray-400">Member for 8 months</p>
</div>
</div>
</div>
<div class="bg-gray-800 p-8 rounded-lg">
<div class="flex items-center mb-4">
<div class="text-yellow-400 text-xl mr-2">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
<p class="text-gray-300 mb-6">"The energy here is unmatched. I've made real friends and achieved fitness goals I never thought possible. Worth every penny."</p>
<div class="flex items-center">
<img src="https://randomuser.me/api/portraits/women/68.jpg" alt="Jessica L." class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold">Jessica L.</h4>
<p class="text-sm text-gray-400">Member for 1.5 years</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section id="contact" class="py-20 bg-red-600 text-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="md:flex items-center justify-between">
<div class="md:w-1/2 mb-10 md:mb-0">
<h2 class="text-3xl md:text-4xl font-bold mb-6">READY TO ELEVATE YOUR FITNESS?</h2>
<p class="text-xl mb-6">Your first workout is on us! Book a free trial session today and experience the Elevate difference.</p>
<div class="flex items-center">
<i class="fas fa-phone-alt text-2xl mr-4"></i>
<div>
<p class="text-sm">CALL US NOW</p>
<p class="text-2xl font-bold">(555) 123-4567</p>
</div>
</div>
</div>
<div class="md:w-1/2 md:pl-12">
<form class="bg-white rounded-lg p-8 shadow-xl">
<h3 class="text-2xl font-bold text-gray-900 mb-6">Get Started Today</h3>
<div class="mb-4">
<input type="text" placeholder="Your Name" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-red-600">
</div>
<div class="mb-4">
<input type="email" placeholder="Email Address" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-red-600">
</div>
<div class="mb-6">
<input type="tel" placeholder="Phone Number" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-red-600">
</div>
<button type="submit" class="w-full bg-red-600 text-white py-3 rounded-full font-bold hover:bg-red-700 transition duration-300">CLAIM FREE TRIAL</button>
</form>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white py-12">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid md:grid-cols-4 gap-8">
<div>
<h3 class="text-xl font-bold mb-4 flex items-center">
<i class="fas fa-dumbbell text-red-600 text-2xl mr-2"></i>
ELEVATE FITNESS
</h3>
<p class="text-gray-400">Helping you build strength, confidence, and community since 2018.</p>
</div>
<div>
<h4 class="text-lg font-bold mb-4">Quick Links</h4>
<ul class="space-y-2">
<li><a href="#about" class="text-gray-400 hover:text-white transition duration-300">About Us</a></li>
<li><a href="#facilities" class="text-gray-400 hover:text-white transition duration-300">Facilities</a></li>
<li><a href="#membership" class="text-gray-400 hover:text-white transition duration-300">Membership</a></li>
<li><a href="#contact" class="text-gray-400 hover:text-white transition duration-300">Contact</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-bold mb-4">Hours</h4>
<ul class="space-y-2 text-gray-400">
<li class="flex justify-between"><span>Monday-Friday</span> <span>5AM - 11PM</span></li>
<li class="flex justify-between"><span>Saturday</span> <span>7AM - 9PM</span></li>
<li class="flex justify-between"><span>Sunday</span> <span>8AM - 8PM</span></li>
</ul>
</div>
<div>
<h4 class="text-lg font-bold mb-4">Connect</h4>
<div class="flex space-x-4 mb-4">
<a href="#" class="w-10 h-10 bg-gray-800 rounded-full flex items-center justify-center hover:bg-red-600 transition duration-300"><i class="fab fa-facebook-f"></i></a>
<a href="#" class="w-10 h-10 bg-gray-800 rounded-full flex items-center justify-center hover:bg-red-600 transition duration-300"><i class="fab fa-instagram"></i></a>
<a href="#" class="w-10 h-10 bg-gray-800 rounded-full flex items-center justify-center hover:bg-red-600 transition duration-300"><i class="fab fa-twitter"></i></a>
<a href="#" class="w-10 h-10 bg-gray-800 rounded-full flex items-center justify-center hover:bg-red-600 transition duration-300"><i class="fab fa-youtube"></i></a>
</div>
<p class="text-gray-400">123 Fitness Ave, Your City</p>
</div>
</div>
<div class="border-t border-gray-800 mt-12 pt-8 text-center text-gray-500 text-sm">
<p>© 2023 Elevate Fitness. All rights reserved.</p>
</div>
</div>
</footer>
<script>
// Simple smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});
</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=Cortex-AI/test" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |