CoolFace
Apppublic

ashiqforex78/codegenius-ai-studio

sourceHugging Faceupdated 11mo agoView on Hugging Face
0likes
index.html118 linesDownload Raw Back to root
1<!DOCTYPE html>2<html lang="en" class="dark">3<head>4    <meta charset="UTF-8">5    <meta name="viewport" content="width=device-width, initial-scale=1.0">6    <title>CodeGenius AI Studio - Next-gen AI Development Platform</title>7    <link rel="stylesheet" href="style.css">8    <script src="https://cdn.tailwindcss.com"></script>9    <script src="https://unpkg.com/feather-icons"></script>10    <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>11    <script>12        tailwind.config = {13            darkMode: 'class',14            theme: {15                extend: {16                    colors: {17                        primary: {18                            500: '#6366f1', // indigo-500 as default primary19                        },20                        secondary: {21                            500: '#f59e0b', // amber-500 as default secondary22                        }23                    }24                }25            }26        }27    </script>28</head>29<body class="bg-gray-900 text-gray-100 min-h-screen">30    <custom-navbar></custom-navbar>31    32    <main class="container mx-auto px-4 py-8">33        <section class="hero-section mb-16">34            <div class="flex flex-col md:flex-row items-center gap-8">35                <div class="md:w-1/2">36                    <h1 class="text-4xl md:text-5xl font-bold mb-6">Build Apps with <span class="text-primary-500">AI Agents</span></h1>37                    <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>38                    <div class="flex flex-col sm:flex-row gap-4">39                        <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">40                            Start New Project41                        </a>42                        <a href="/demo" class="border border-gray-700 hover:border-gray-600 px-6 py-3 rounded-lg font-medium text-center transition-colors">43                            Watch Demo44                        </a>45                    </div>46                </div>47                <div class="md:w-1/2">48                    <div class="relative">49                        <div class="absolute -inset-4 bg-gradient-to-r from-primary-500 to-secondary-500 rounded-2xl opacity-20 blur"></div>50                        <div class="relative bg-gray-800 rounded-xl p-6 shadow-2xl">51                            <div class="flex items-center gap-2 mb-4">52                                <div class="h-3 w-3 rounded-full bg-red-500"></div>53                                <div class="h-3 w-3 rounded-full bg-yellow-500"></div>54                                <div class="h-3 w-3 rounded-full bg-green-500"></div>55                                <div class="ml-auto text-sm text-gray-400">AI Agent Terminal</div>56                            </div>57                            <div class="font-mono text-sm">58                                <div class="text-green-400">$ agent create react app with auth</div>59                                <div class="text-gray-400">→ Initializing project...</div>60                                <div class="text-gray-400">→ Creating React components</div>61                                <div class="text-gray-400">→ Setting up Firebase Auth</div>62                                <div class="text-green-400">✓ Project ready at https://my-app.codegenius.dev</div>63                            </div>64                        </div>65                    </div>66                </div>67            </div>68        </section>69 70        <section class="features-section mb-16">71            <h2 class="text-3xl font-bold mb-12 text-center">Powered by AI Specialists</h2>72            <div class="grid md:grid-cols-3 gap-8">73                <div class="bg-gray-800 p-6 rounded-xl hover:bg-gray-750 transition-colors">74                    <div class="w-12 h-12 bg-primary-500/20 rounded-lg flex items-center justify-center mb-4">75                        <i data-feather="code" class="text-primary-500"></i>76                    </div>77                    <h3 class="text-xl font-semibold mb-2">Code Architect</h3>78                    <p class="text-gray-400">Designs efficient, scalable architecture tailored to your needs.</p>79                </div>80                <div class="bg-gray-800 p-6 rounded-xl hover:bg-gray-750 transition-colors">81                    <div class="w-12 h-12 bg-secondary-500/20 rounded-lg flex items-center justify-center mb-4">82                        <i data-feather="figma" class="text-secondary-500"></i>83                    </div>84                    <h3 class="text-xl font-semibold mb-2">UI Designer</h3>85                    <p class="text-gray-400">Transforms Figma designs into pixel-perfect responsive code.</p>86                </div>87                <div class="bg-gray-800 p-6 rounded-xl hover:bg-gray-750 transition-colors">88                    <div class="w-12 h-12 bg-purple-500/20 rounded-lg flex items-center justify-center mb-4">89                        <i data-feather="shield" class="text-purple-500"></i>90                    </div>91                    <h3 class="text-xl font-semibold mb-2">Security Expert</h3>92                    <p class="text-gray-400">Ensures your app follows OWASP best practices and compliance.</p>93                </div>94            </div>95        </section>96 97        <section class="cta-section bg-gradient-to-r from-gray-800 to-gray-850 rounded-2xl p-8 md:p-12 mb-16">98            <div class="max-w-3xl mx-auto text-center">99                <h2 class="text-3xl font-bold mb-6">Ready to Build the Future?</h2>100                <p class="text-xl mb-8 text-gray-300">Join thousands of developers and teams shipping products faster with AI collaboration.</p>101                <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">102                    Get Started Free103                </a>104            </div>105        </section>106    </main>107 108    <custom-footer></custom-footer>109 110    <script src="components/navbar.js"></script>111    <script src="components/footer.js"></script>112    <script src="script.js"></script>113    <script>114        feather.replace();115    </script>116<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>117</body>118</html>