Component Wizard v1

Write your component requirements, and I'll give you the code.

Currently HTML and TailwindCSS code is generated.

Created by Berkay

Recent generations
"call to action component"
<div class="bg-blue-600 text-white p-6 rounded-lg text-center">
    <h2 class="text-2xl font-bold mb-4">Join Us Today!</h2>
    <p class="mb-4">Be a part of an amazing community and achieve your goals.</p>
    <a href="#" class="bg-white text-blue-600 font-semibold py-2 px-4 rounded hover:bg-gray-200">Get Started</a>
</div>
"واجهة مستخدم برمجية بلغة سي شارب تحتوي على تسجيل اسم المستخدم وكلمة المرور"
```html
<div class="flex justify-center items-center min-h-screen bg-gray-100">
    <div class="bg-white rounded-lg shadow-lg p-8 w-96">
        <h2 class="text-2xl font-bold text-center mb-6">تسجيل الدخول</h2>
        <form>
            <div class="mb-4">
                <label class="block text-gray-700 text-sm font-bold mb-2" for="username">اسم المستخدم</label>
                <input 
                    type="text" 
                    id="username" 
                    name="username" 
                    class="shadow appearance-none border rounded w-full py-2 px-3 text-gray-700 leading-tight focus:outline-none focus:shadow-outline" 
                    placeholder="أدخل اسم المستخدم" 
                    required
                />
            </div>
            <div class="mb-6">
                <label class="block text-gray-700 text-sm font-bold mb-2" for="password">كلمة المرور</label>
                <input 
                    type="password" 
                    id="password" 
                    name="password" 
                    class="shadow appearance-none border rounded w-full py-2 px-3 text-gray-700 leading-tight focus:outline-none focus:shadow-outline" 
                    placeholder="أدخل كلمة المرور" 
                    required
                />
            </div>
            <div class="flex items-center justify-between">
                <button 
                    type="submit" 
                    class="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded focus:outline-none focus:shadow-outline"
                >
                    تسجيل الدخول
                </button>
            </div>
        </form>
    </div>
</div>
```
"Necesito un componente que este dividido en 3 x 3, cada bloque tendrá un color para representarlo"
<div class="grid grid-cols-3 gap-4 p-4">
    <div class="bg-red-500 h-24"></div>
    <div class="bg-green-500 h-24"></div>
    <div class="bg-blue-500 h-24"></div>
    <div class="bg-yellow-500 h-24"></div>
    <div class="bg-purple-500 h-24"></div>
    <div class="bg-orange-500 h-24"></div>
    <div class="bg-teal-500 h-24"></div>
    <div class="bg-pink-500 h-24"></div>
    <div class="bg-indigo-500 h-24"></div>
</div>