Spaces:
Running
Running
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>CodeBuddy - AI-Powered IDE</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> | |
/* Custom animations */ | |
@keyframes float { | |
0%, 100% { transform: translateY(0); } | |
50% { transform: translateY(-20px); } | |
} | |
.floating { | |
animation: float 6s ease-in-out infinite; | |
} | |
.gradient-text { | |
background: linear-gradient(90deg, #3b82f6, #8b5cf6); | |
-webkit-background-clip: text; | |
background-clip: text; | |
color: transparent; | |
} | |
.code-editor { | |
background: #1e293b; | |
border-radius: 0.75rem; | |
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); | |
} | |
.terminal { | |
background: #0f172a; | |
border-radius: 0.75rem; | |
} | |
.glow-effect { | |
box-shadow: 0 0 15px rgba(59, 130, 246, 0.5); | |
} | |
.feature-card:hover { | |
transform: translateY(-5px); | |
transition: all 0.3s ease; | |
} | |
</style> | |
</head> | |
<body class="bg-gray-900 text-gray-100 font-sans overflow-x-hidden"> | |
<!-- Navigation --> | |
<nav class="container mx-auto px-6 py-4"> | |
<div class="flex items-center justify-between"> | |
<div class="flex items-center space-x-2"> | |
<i class="fas fa-code text-blue-500 text-2xl"></i> | |
<span class="text-2xl font-bold">Code<span class="gradient-text">Buddy</span></span> | |
</div> | |
<div class="hidden md:flex space-x-8"> | |
<a href="#features" class="hover:text-blue-400 transition">Features</a> | |
<a href="#demo" class="hover:text-blue-400 transition">Demo</a> | |
<a href="#pricing" class="hover:text-blue-400 transition">Pricing</a> | |
<a href="#testimonials" class="hover:text-blue-400 transition">Testimonials</a> | |
</div> | |
<div class="flex items-center space-x-4"> | |
<button class="px-4 py-2 rounded-lg hover:bg-gray-800 transition">Login</button> | |
<button class="px-4 py-2 bg-blue-600 rounded-lg hover:bg-blue-700 transition glow-effect">Get Started</button> | |
<button class="md:hidden text-xl"> | |
<i class="fas fa-bars"></i> | |
</button> | |
</div> | |
</div> | |
</nav> | |
<!-- Hero Section --> | |
<section class="container mx-auto px-6 py-16 md:py-24"> | |
<div class="flex flex-col md:flex-row items-center"> | |
<div class="md:w-1/2 mb-12 md:mb-0"> | |
<h1 class="text-4xl md:text-6xl font-bold leading-tight mb-6"> | |
Code Smarter with <span class="gradient-text">AI Assistance</span> | |
</h1> | |
<p class="text-xl text-gray-400 mb-8"> | |
CodeBuddy is the next-generation IDE that understands your code and helps you write better, faster, and with fewer bugs. | |
</p> | |
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4"> | |
<button class="px-8 py-3 bg-blue-600 rounded-lg hover:bg-blue-700 transition glow-effect text-lg font-semibold"> | |
Start Coding Now | |
</button> | |
<button class="px-8 py-3 border border-blue-500 rounded-lg hover:bg-gray-800 transition text-lg font-semibold"> | |
Watch Demo | |
</button> | |
</div> | |
<div class="mt-8 flex items-center space-x-4"> | |
<div class="flex -space-x-2"> | |
<img src="https://randomuser.me/api/portraits/women/12.jpg" class="w-10 h-10 rounded-full border-2 border-gray-800" alt="User"> | |
<img src="https://randomuser.me/api/portraits/men/32.jpg" class="w-10 h-10 rounded-full border-2 border-gray-800" alt="User"> | |
<img src="https://randomuser.me/api/portraits/women/45.jpg" class="w-10 h-10 rounded-full border-2 border-gray-800" alt="User"> | |
</div> | |
<div> | |
<p class="text-sm text-gray-400">Trusted by 10,000+ developers</p> | |
<div class="flex items-center"> | |
<i class="fas fa-star text-yellow-400 mr-1"></i> | |
<span class="font-medium">4.9/5 (1,200 reviews)</span> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="md:w-1/2 relative"> | |
<div class="code-editor p-4 floating"> | |
<div class="flex space-x-2 mb-4"> | |
<div class="w-3 h-3 rounded-full bg-red-500"></div> | |
<div class="w-3 h-3 rounded-full bg-yellow-500"></div> | |
<div class="w-3 h-3 rounded-full bg-green-500"></div> | |
</div> | |
<pre class="text-green-400 font-mono text-sm overflow-x-auto"> | |
<span class="text-blue-400">function</span> <span class="text-yellow-300">calculateSum</span>(nums) { | |
<span class="text-blue-400">let</span> total = <span class="text-purple-400">0</span>; | |
<span class="text-blue-400">for</span> (<span class="text-blue-400">let</span> num <span class="text-blue-400">of</span> nums) { | |
total += num; | |
} | |
<span class="text-blue-400">return</span> total; | |
} | |
<span class="text-gray-500">// CodeBuddy AI suggestion:</span> | |
<span class="text-gray-500">// Consider using reduce() for cleaner code</span> | |
<span class="text-blue-400">const</span> <span class="text-yellow-300">sum</span> = nums.<span class="text-yellow-300">reduce</span>((a, b) => a + b, <span class="text-purple-400">0</span>); | |
</pre> | |
</div> | |
<div class="terminal p-4 mt-6 w-3/4 ml-auto"> | |
<div class="flex items-center mb-2"> | |
<i class="fas fa-terminal text-green-400 mr-2"></i> | |
<span class="text-sm font-mono">Terminal</span> | |
</div> | |
<div class="font-mono text-sm"> | |
<p class="text-green-400">$ npm run dev</p> | |
<p class="text-gray-300">Compiling...</p> | |
<p class="text-green-400">Compiled successfully in 1.2s</p> | |
<p class="text-blue-400">No issues found by CodeBuddy AI</p> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Features Section --> | |
<section id="features" class="bg-gray-800 py-16"> | |
<div class="container mx-auto px-6"> | |
<div class="text-center mb-16"> | |
<h2 class="text-3xl md:text-4xl font-bold mb-4">Powerful Features</h2> | |
<p class="text-xl text-gray-400 max-w-2xl mx-auto"> | |
Everything you need to supercharge your development workflow | |
</p> | |
</div> | |
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8"> | |
<div class="feature-card bg-gray-900 p-8 rounded-xl hover:shadow-lg transition"> | |
<div class="w-14 h-14 bg-blue-900 rounded-lg flex items-center justify-center mb-6"> | |
<i class="fas fa-robot text-blue-400 text-2xl"></i> | |
</div> | |
<h3 class="text-xl font-bold mb-3">AI Code Completion</h3> | |
<p class="text-gray-400"> | |
Get intelligent code suggestions as you type, powered by our advanced AI models trained on millions of repositories. | |
</p> | |
</div> | |
<div class="feature-card bg-gray-900 p-8 rounded-xl hover:shadow-lg transition"> | |
<div class="w-14 h-14 bg-purple-900 rounded-lg flex items-center justify-center mb-6"> | |
<i class="fas fa-bug text-purple-400 text-2xl"></i> | |
</div> | |
<h3 class="text-xl font-bold mb-3">Real-time Error Detection</h3> | |
<p class="text-gray-400"> | |
Catch bugs before they happen with our sophisticated static analysis that understands your code context. | |
</p> | |
</div> | |
<div class="feature-card bg-gray-900 p-8 rounded-xl hover:shadow-lg transition"> | |
<div class="w-14 h-14 bg-green-900 rounded-lg flex items-center justify-center mb-6"> | |
<i class="fas fa-comments text-green-400 text-2xl"></i> | |
</div> | |
<h3 class="text-xl font-bold mb-3">Natural Language to Code</h3> | |
<p class="text-gray-400"> | |
Describe what you want in plain English and let CodeBuddy generate the code for you. | |
</p> | |
</div> | |
<div class="feature-card bg-gray-900 p-8 rounded-xl hover:shadow-lg transition"> | |
<div class="w-14 h-14 bg-yellow-900 rounded-lg flex items-center justify-center mb-6"> | |
<i class="fas fa-lightbulb text-yellow-400 text-2xl"></i> | |
</div> | |
<h3 class="text-xl font-bold mb-3">Code Optimization</h3> | |
<p class="text-gray-400"> | |
Get suggestions for performance improvements, security fixes, and best practices specific to your codebase. | |
</p> | |
</div> | |
<div class="feature-card bg-gray-900 p-8 rounded-xl hover:shadow-lg transition"> | |
<div class="w-14 h-14 bg-red-900 rounded-lg flex items-center justify-center mb-6"> | |
<i class="fas fa-exchange-alt text-red-400 text-2xl"></i> | |
</div> | |
<h3 class="text-xl font-bold mb-3">Seamless Collaboration</h3> | |
<p class="text-gray-400"> | |
Work together in real-time with built-in pair programming, code reviews, and team knowledge sharing. | |
</p> | |
</div> | |
<div class="feature-card bg-gray-900 p-8 rounded-xl hover:shadow-lg transition"> | |
<div class="w-14 h-14 bg-indigo-900 rounded-lg flex items-center justify-center mb-6"> | |
<i class="fas fa-cloud text-indigo-400 text-2xl"></i> | |
</div> | |
<h3 class="text-xl font-bold mb-3">Cloud-Based Workspace</h3> | |
<p class="text-gray-400"> | |
Access your projects from anywhere with our fully configured cloud development environment. | |
</p> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Demo Section --> | |
<section id="demo" class="py-16"> | |
<div class="container mx-auto px-6"> | |
<div class="text-center mb-16"> | |
<h2 class="text-3xl md:text-4xl font-bold mb-4">See It In Action</h2> | |
<p class="text-xl text-gray-400 max-w-2xl mx-auto"> | |
Watch how CodeBuddy transforms your coding experience | |
</p> | |
</div> | |
<div class="relative bg-gray-800 rounded-xl overflow-hidden" style="padding-bottom: 56.25%;"> | |
<div class="absolute inset-0 flex items-center justify-center"> | |
<div class="text-center"> | |
<button class="w-20 h-20 bg-blue-600 rounded-full flex items-center justify-center hover:bg-blue-700 transition glow-effect"> | |
<i class="fas fa-play text-2xl"></i> | |
</button> | |
<p class="mt-4 text-lg">Play Demo Video</p> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Pricing Section --> | |
<section id="pricing" class="bg-gray-800 py-16"> | |
<div class="container mx-auto px-6"> | |
<div class="text-center mb-16"> | |
<h2 class="text-3xl md:text-4xl font-bold mb-4">Simple, Transparent Pricing</h2> | |
<p class="text-xl text-gray-400 max-w-2xl mx-auto"> | |
Choose the plan that fits your needs | |
</p> | |
</div> | |
<div class="grid grid-cols-1 md:grid-cols-3 gap-8 max-w-5xl mx-auto"> | |
<div class="bg-gray-900 p-8 rounded-xl"> | |
<h3 class="text-xl font-bold mb-2">Starter</h3> | |
<p class="text-gray-400 mb-6">Perfect for individual developers</p> | |
<div class="mb-6"> | |
<span class="text-4xl font-bold">$9</span> | |
<span class="text-gray-400">/month</span> | |
</div> | |
<ul class="space-y-3 mb-8"> | |
<li class="flex items-center"> | |
<i class="fas fa-check text-green-400 mr-2"></i> | |
<span>Basic AI suggestions</span> | |
</li> | |
<li class="flex items-center"> | |
<i class="fas fa-check text-green-400 mr-2"></i> | |
<span>5 private projects</span> | |
</li> | |
<li class="flex items-center"> | |
<i class="fas fa-check text-green-400 mr-2"></i> | |
<span>Community support</span> | |
</li> | |
<li class="flex items-center text-gray-500"> | |
<i class="fas fa-times text-red-400 mr-2"></i> | |
<span>No team collaboration</span> | |
</li> | |
</ul> | |
<button class="w-full py-3 border border-blue-500 rounded-lg hover:bg-gray-800 transition"> | |
Get Started | |
</button> | |
</div> | |
<div class="bg-gray-900 p-8 rounded-xl border-2 border-blue-500 relative"> | |
<div class="absolute -top-3 left-1/2 transform -translate-x-1/2 bg-blue-500 text-white text-xs font-bold px-3 py-1 rounded-full"> | |
MOST POPULAR | |
</div> | |
<h3 class="text-xl font-bold mb-2">Pro</h3> | |
<p class="text-gray-400 mb-6">For professional developers and small teams</p> | |
<div class="mb-6"> | |
<span class="text-4xl font-bold">$29</span> | |
<span class="text-gray-400">/month</span> | |
</div> | |
<ul class="space-y-3 mb-8"> | |
<li class="flex items-center"> | |
<i class="fas fa-check text-green-400 mr-2"></i> | |
<span>Advanced AI suggestions</span> | |
</li> | |
<li class="flex items-center"> | |
<i class="fas fa-check text-green-400 mr-2"></i> | |
<span>Unlimited private projects</span> | |
</li> | |
<li class="flex items-center"> | |
<i class="fas fa-check text-green-400 mr-2"></i> | |
<span>Priority support</span> | |
</li> | |
<li class="flex items-center"> | |
<i class="fas fa-check text-green-400 mr-2"></i> | |
<span>Team collaboration (up to 5)</span> | |
</li> | |
</ul> | |
<button class="w-full py-3 bg-blue-600 rounded-lg hover:bg-blue-700 transition glow-effect"> | |
Get Started | |
</button> | |
</div> | |
<div class="bg-gray-900 p-8 rounded-xl"> | |
<h3 class="text-xl font-bold mb-2">Enterprise</h3> | |
<p class="text-gray-400 mb-6">For large teams and organizations</p> | |
<div class="mb-6"> | |
<span class="text-4xl font-bold">$99</span> | |
<span class="text-gray-400">/month</span> | |
</div> | |
<ul class="space-y-3 mb-8"> | |
<li class="flex items-center"> | |
<i class="fas fa-check text-green-400 mr-2"></i> | |
<span>Premium AI suggestions</span> | |
</li> | |
<li class="flex items-center"> | |
<i class="fas fa-check text-green-400 mr-2"></i> | |
<span>Unlimited everything</span> | |
</li> | |
<li class="flex items-center"> | |
<i class="fas fa-check text-green-400 mr-2"></i> | |
<span>24/7 dedicated support</span> | |
</li> | |
<li class="flex items-center"> | |
<i class="fas fa-check text-green-400 mr-2"></i> | |
<span>Advanced security & compliance</span> | |
</li> | |
</ul> | |
<button class="w-full py-3 border border-blue-500 rounded-lg hover:bg-gray-800 transition"> | |
Contact Sales | |
</button> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Testimonials Section --> | |
<section id="testimonials" class="py-16"> | |
<div class="container mx-auto px-6"> | |
<div class="text-center mb-16"> | |
<h2 class="text-3xl md:text-4xl font-bold mb-4">What Developers Say</h2> | |
<p class="text-xl text-gray-400 max-w-2xl mx-auto"> | |
Join thousands of developers who boosted their productivity | |
</p> | |
</div> | |
<div class="grid grid-cols-1 md:grid-cols-3 gap-8"> | |
<div class="bg-gray-800 p-8 rounded-xl"> | |
<div class="flex items-center mb-4"> | |
<img src="https://randomuser.me/api/portraits/women/44.jpg" class="w-12 h-12 rounded-full mr-4" alt="User"> | |
<div> | |
<h4 class="font-bold">Sarah Johnson</h4> | |
<p class="text-gray-400 text-sm">Senior Developer @TechCorp</p> | |
</div> | |
</div> | |
<p class="text-gray-300 italic"> | |
"CodeBuddy has cut my debugging time in half. The AI catches issues I would normally spend hours tracking down. It's like having a senior developer looking over my shoulder." | |
</p> | |
<div class="flex mt-4"> | |
<i class="fas fa-star text-yellow-400"></i> | |
<i class="fas fa-star text-yellow-400"></i> | |
<i class="fas fa-star text-yellow-400"></i> | |
<i class="fas fa-star text-yellow-400"></i> | |
<i class="fas fa-star text-yellow-400"></i> | |
</div> | |
</div> | |
<div class="bg-gray-800 p-8 rounded-xl"> | |
<div class="flex items-center mb-4"> | |
<img src="https://randomuser.me/api/portraits/men/32.jpg" class="w-12 h-12 rounded-full mr-4" alt="User"> | |
<div> | |
<h4 class="font-bold">Michael Chen</h4> | |
<p class="text-gray-400 text-sm">CTO @StartupXYZ</p> | |
</div> | |
</div> | |
<p class="text-gray-300 italic"> | |
"Our team's velocity increased by 40% after adopting CodeBuddy. The AI pair programming feature has been particularly valuable for onboarding junior developers." | |
</p> | |
<div class="flex mt-4"> | |
<i class="fas fa-star text-yellow-400"></i> | |
<i class="fas fa-star text-yellow-400"></i> | |
<i class="fas fa-star text-yellow-400"></i> | |
<i class="fas fa-star text-yellow-400"></i> | |
<i class="fas fa-star text-yellow-400"></i> | |
</div> | |
</div> | |
<div class="bg-gray-800 p-8 rounded-xl"> | |
<div class="flex items-center mb-4"> | |
<img src="https://randomuser.me/api/portraits/women/68.jpg" class="w-12 h-12 rounded-full mr-4" alt="User"> | |
<div> | |
<h4 class="font-bold">Emma Rodriguez</h4> | |
<p class="text-gray-400 text-sm">Freelance Developer</p> | |
</div> | |
</div> | |
<p class="text-gray-300 italic"> | |
"As a solo developer, CodeBuddy feels like having a teammate. The AI suggestions often show me better ways to implement features I'm working on. Worth every penny." | |
</p> | |
<div class="flex mt-4"> | |
<i class="fas fa-star text-yellow-400"></i> | |
<i class="fas fa-star text-yellow-400"></i> | |
<i class="fas fa-star text-yellow-400"></i> | |
<i class="fas fa-star text-yellow-400"></i> | |
<i class="fas fa-star-half-alt text-yellow-400"></i> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- CTA Section --> | |
<section class="bg-gradient-to-r from-blue-900 to-purple-900 py-16"> | |
<div class="container mx-auto px-6 text-center"> | |
<h2 class="text-3xl md:text-4xl font-bold mb-6">Ready to Transform Your Coding Experience?</h2> | |
<p class="text-xl text-blue-200 max-w-2xl mx-auto mb-8"> | |
Join thousands of developers who are coding smarter with AI assistance | |
</p> | |
<button class="px-8 py-4 bg-white text-blue-900 rounded-lg hover:bg-gray-100 transition text-lg font-bold glow-effect"> | |
Start Your Free Trial Now | |
</button> | |
</div> | |
</section> | |
<!-- Footer --> | |
<footer class="bg-gray-900 py-12"> | |
<div class="container mx-auto px-6"> | |
<div class="grid grid-cols-1 md:grid-cols-4 gap-8 mb-8"> | |
<div> | |
<div class="flex items-center space-x-2 mb-4"> | |
<i class="fas fa-code text-blue-500 text-2xl"></i> | |
<span class="text-2xl font-bold">Code<span class="gradient-text">Buddy</span></span> | |
</div> | |
<p class="text-gray-400 mb-4"> | |
The AI-powered IDE that helps you write better code faster. | |
</p> | |
<div class="flex space-x-4"> | |
<a href="#" class="text-gray-400 hover:text-blue-400 transition"><i class="fab fa-twitter"></i></a> | |
<a href="#" class="text-gray-400 hover:text-blue-400 transition"><i class="fab fa-github"></i></a> | |
<a href="#" class="text-gray-400 hover:text-blue-400 transition"><i class="fab fa-discord"></i></a> | |
<a href="#" class="text-gray-400 hover:text-blue-400 transition"><i class="fab fa-youtube"></i></a> | |
</div> | |
</div> | |
<div> | |
<h4 class="text-lg font-bold mb-4">Product</h4> | |
<ul class="space-y-2"> | |
<li><a href="#" class="text-gray-400 hover:text-blue-400 transition">Features</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-blue-400 transition">Pricing</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-blue-400 transition">Documentation</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-blue-400 transition">Roadmap</a></li> | |
</ul> | |
</div> | |
<div> | |
<h4 class="text-lg font-bold mb-4">Company</h4> | |
<ul class="space-y-2"> | |
<li><a href="#" class="text-gray-400 hover:text-blue-400 transition">About</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-blue-400 transition">Blog</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-blue-400 transition">Careers</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-blue-400 transition">Contact</a></li> | |
</ul> | |
</div> | |
<div> | |
<h4 class="text-lg font-bold mb-4">Resources</h4> | |
<ul class="space-y-2"> | |
<li><a href="#" class="text-gray-400 hover:text-blue-400 transition">Community</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-blue-400 transition">Tutorials</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-blue-400 transition">Support</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-blue-400 transition">API Status</a></li> | |
</ul> | |
</div> | |
</div> | |
<div class="border-t border-gray-800 pt-8 flex flex-col md:flex-row justify-between items-center"> | |
<p class="text-gray-400 mb-4 md:mb-0"> | |
© 2023 CodeBuddy. All rights reserved. | |
</p> | |
<div class="flex space-x-6"> | |
<a href="#" class="text-gray-400 hover:text-blue-400 transition">Terms</a> | |
<a href="#" class="text-gray-400 hover:text-blue-400 transition">Privacy</a> | |
<a href="#" class="text-gray-400 hover:text-blue-400 transition">Cookies</a> | |
</div> | |
</div> | |
</div> | |
</footer> | |
<script> | |
// Simple animation for feature cards on scroll | |
document.addEventListener('DOMContentLoaded', function() { | |
const featureCards = document.querySelectorAll('.feature-card'); | |
const observer = new IntersectionObserver((entries) => { | |
entries.forEach(entry => { | |
if (entry.isIntersecting) { | |
entry.target.style.opacity = '1'; | |
entry.target.style.transform = 'translateY(0)'; | |
} | |
}); | |
}, { threshold: 0.1 }); | |
featureCards.forEach(card => { | |
card.style.opacity = '0'; | |
card.style.transform = 'translateY(20px)'; | |
card.style.transition = 'all 0.6s ease'; | |
observer.observe(card); | |
}); | |
// Smooth scrolling for navigation 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=sgch2023/codebudy-land-page" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
</html> |