File size: 6,436 Bytes
b6db5aa | 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 | <!DOCTYPE html>
<html lang="en" class="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CodeGenius AI Studio - Next-gen AI Development Platform</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script>
tailwind.config = {
darkMode: 'class',
theme: {
extend: {
colors: {
primary: {
500: '#6366f1', // indigo-500 as default primary
},
secondary: {
500: '#f59e0b', // amber-500 as default secondary
}
}
}
}
}
</script>
</head>
<body class="bg-gray-900 text-gray-100 min-h-screen">
<custom-navbar></custom-navbar>
<main class="container mx-auto px-4 py-8">
<section class="hero-section mb-16">
<div class="flex flex-col md:flex-row items-center gap-8">
<div class="md:w-1/2">
<h1 class="text-4xl md:text-5xl font-bold mb-6">Build Apps with <span class="text-primary-500">AI Agents</span></h1>
<p class="text-xl mb-8 text-gray-300">Describe your vision and let our AI team architect, code, test, and deploy your application autonomously.</p>
<div class="flex flex-col sm:flex-row gap-4">
<a href="/create" class="bg-primary-500 hover:bg-primary-600 text-white px-6 py-3 rounded-lg font-medium text-center transition-colors">
Start New Project
</a>
<a href="/demo" class="border border-gray-700 hover:border-gray-600 px-6 py-3 rounded-lg font-medium text-center transition-colors">
Watch Demo
</a>
</div>
</div>
<div class="md:w-1/2">
<div class="relative">
<div class="absolute -inset-4 bg-gradient-to-r from-primary-500 to-secondary-500 rounded-2xl opacity-20 blur"></div>
<div class="relative bg-gray-800 rounded-xl p-6 shadow-2xl">
<div class="flex items-center gap-2 mb-4">
<div class="h-3 w-3 rounded-full bg-red-500"></div>
<div class="h-3 w-3 rounded-full bg-yellow-500"></div>
<div class="h-3 w-3 rounded-full bg-green-500"></div>
<div class="ml-auto text-sm text-gray-400">AI Agent Terminal</div>
</div>
<div class="font-mono text-sm">
<div class="text-green-400">$ agent create react app with auth</div>
<div class="text-gray-400">β Initializing project...</div>
<div class="text-gray-400">β Creating React components</div>
<div class="text-gray-400">β Setting up Firebase Auth</div>
<div class="text-green-400">β Project ready at https://my-app.codegenius.dev</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="features-section mb-16">
<h2 class="text-3xl font-bold mb-12 text-center">Powered by AI Specialists</h2>
<div class="grid md:grid-cols-3 gap-8">
<div class="bg-gray-800 p-6 rounded-xl hover:bg-gray-750 transition-colors">
<div class="w-12 h-12 bg-primary-500/20 rounded-lg flex items-center justify-center mb-4">
<i data-feather="code" class="text-primary-500"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Code Architect</h3>
<p class="text-gray-400">Designs efficient, scalable architecture tailored to your needs.</p>
</div>
<div class="bg-gray-800 p-6 rounded-xl hover:bg-gray-750 transition-colors">
<div class="w-12 h-12 bg-secondary-500/20 rounded-lg flex items-center justify-center mb-4">
<i data-feather="figma" class="text-secondary-500"></i>
</div>
<h3 class="text-xl font-semibold mb-2">UI Designer</h3>
<p class="text-gray-400">Transforms Figma designs into pixel-perfect responsive code.</p>
</div>
<div class="bg-gray-800 p-6 rounded-xl hover:bg-gray-750 transition-colors">
<div class="w-12 h-12 bg-purple-500/20 rounded-lg flex items-center justify-center mb-4">
<i data-feather="shield" class="text-purple-500"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Security Expert</h3>
<p class="text-gray-400">Ensures your app follows OWASP best practices and compliance.</p>
</div>
</div>
</section>
<section class="cta-section bg-gradient-to-r from-gray-800 to-gray-850 rounded-2xl p-8 md:p-12 mb-16">
<div class="max-w-3xl mx-auto text-center">
<h2 class="text-3xl font-bold mb-6">Ready to Build the Future?</h2>
<p class="text-xl mb-8 text-gray-300">Join thousands of developers and teams shipping products faster with AI collaboration.</p>
<a href="/signup" class="inline-block bg-primary-500 hover:bg-primary-600 text-white px-8 py-4 rounded-lg font-medium transition-colors">
Get Started Free
</a>
</div>
</section>
</main>
<custom-footer></custom-footer>
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
<script src="script.js"></script>
<script>
feather.replace();
</script>
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
</body>
</html> |