readysetcode-wizardry / index.html
Guillelfo's picture
<!DOCTYPE html>
82bd6ab verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ReadySetCode | AI-Powered Development</title>
<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>
<link rel="stylesheet" href="style.css">
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: {
500: '#6366f1',
},
secondary: {
500: '#f59e0b',
}
}
}
}
}
</script>
</head>
<body class="bg-gray-50 min-h-screen">
<custom-navbar></custom-navbar>
<main class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12">
<div class="text-center">
<h1 class="text-4xl md:text-6xl font-bold text-gray-900 mb-6">
<span class="block text-xl md:text-2xl text-primary-500 mb-2">Welcome to</span>
ReadySetCode Wizardry
</h1>
<p class="text-lg md:text-xl text-gray-600 max-w-3xl mx-auto">
Your AI-powered development assistant for creating beautiful, responsive websites with magical ease.
</p>
<div class="mt-10 grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="bg-white p-6 rounded-xl shadow-lg hover:shadow-xl transition-shadow">
<div class="text-primary-500 mb-4">
<i data-feather="code" class="w-10 h-10"></i>
</div>
<h3 class="text-xl font-semibold text-gray-900 mb-2">Code Generation</h3>
<p class="text-gray-600">Instant HTML, CSS and JavaScript tailored to your needs.</p>
</div>
<div class="bg-white p-6 rounded-xl shadow-lg hover:shadow-xl transition-shadow">
<div class="text-primary-500 mb-4">
<i data-feather="layout" class="w-10 h-10"></i>
</div>
<h3 class="text-xl font-semibold text-gray-900 mb-2">UI/UX Design</h3>
<p class="text-gray-600">Beautiful, responsive interfaces with TailwindCSS.</p>
</div>
<div class="bg-white p-6 rounded-xl shadow-lg hover:shadow-xl transition-shadow">
<div class="text-primary-500 mb-4">
<i data-feather="zap" class="w-10 h-10"></i>
</div>
<h3 class="text-xl font-semibold text-gray-900 mb-2">Fast Results</h3>
<p class="text-gray-600">Get complete solutions in seconds, not hours.</p>
</div>
</div>
</div>
</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>