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
"react component for calculator app "
<div class="flex flex-col items-center justify-center h-screen bg-gray-100">
    <div class="bg-white shadow-lg rounded-lg p-6 w-80">
        <input type="text" id="display" class="border border-gray-300 rounded-lg p-2 w-full text-right text-2xl" readonly />
        <div class="grid grid-cols-4 gap-4 mt-4">
            <button class="bg-blue-500 text-white rounded-lg p-4">7</button>
            <button class="bg-blue-500 text-white rounded-lg p-4">8</button>
            <button class="bg-blue-500 text-white rounded-lg p-4">9</button>
            <button class="bg-red-500 text-white rounded-lg p-4">C</button>
            <button class="bg-blue-500 text-white rounded-lg p-4">4</button>
            <button class="bg-blue-500 text-white rounded-lg p-4">5</button>
            <button class="bg-blue-500 text-white rounded-lg p-4">6</button>
            <button class="bg-blue-500 text-white rounded-lg p-4">/</button>
            <button class="bg-blue-500 text-white rounded-lg p-4">1</button>
            <button class="bg-blue-500 text-white rounded-lg p-4">2</button>
            <button class="bg-blue-500 text-white rounded-lg p-4">3</button>
            <button class="bg-blue-500 text-white rounded-lg p-4">*</button>
            <button class="bg-blue-500 text-white rounded-lg p-4 col-span-2">0</button>
            <button class="bg-blue-500 text-white rounded-lg p-4">.</button>
            <button class="bg-blue-500 text-white rounded-lg p-4">=</button>
            <button class="bg-blue-500 text-white rounded-lg p-4">-</button>
            <button class="bg-blue-500 text-white rounded-lg p-4">+</button>
        </div>
    </div>
</div>
"Built a fully functional product management tool with a canban board"
<div class="min-h-screen bg-gray-100 flex items-center justify-center">
    <div class="bg-white shadow-md rounded-lg w-full max-w-5xl">
        <div class="p-6 border-b border-gray-200">
            <h1 class="text-2xl font-bold">Product Management Tool</h1>
        </div>
        <div class="flex">
            <div class="w-1/4 p-4 border-r border-gray-200">
                <h2 class="text-lg font-semibold mb-4">To Do</h2>
                <div class="bg-gray-50 rounded-lg p-4 space-y-4">
                    <div class="bg-white p-4 rounded-lg shadow hover:shadow-md">
                        <h3 class="font-semibold">Task 1</h3>
                        <p>Brief description of Task 1</p>
                    </div>
                    <div class="bg-white p-4 rounded-lg shadow hover:shadow-md">
                        <h3 class="font-semibold">Task 2</h3>
                        <p>Brief description of Task 2</p>
                    </div>
                </div>
            </div>
            <div class="w-1/4 p-4 border-r border-gray-200">
                <h2 class="text-lg font-semibold mb-4">In Progress</h2>
                <div class="bg-gray-50 rounded-lg p-4 space-y-4">
                    <div class="bg-white p-4 rounded-lg shadow hover:shadow-md">
                        <h3 class="font-semibold">Task 3</h3>
                        <p>Brief description of Task 3</p>
                    </div>
                </div>
            </div>
            <div class="w-1/4 p-4 border-r border-gray-200">
                <h2 class="text-lg font-semibold mb-4">Review</h2>
                <div class="bg-gray-50 rounded-lg p-4 space-y-4">
                    <div class="bg-white p-4 rounded-lg shadow hover:shadow-md">
                        <h3 class="font-semibold">Task 4</h3>
                        <p>Brief description of Task 4</p>
                    </div>
                </div>
            </div>
            <div class="w-1/4 p-4">
                <h2 class="text-lg font-semibold mb-4">Done</h2>
                <div class="bg-gray-50 rounded-lg p-4 space-y-4">
                    <div class="bg-white p-4 rounded-lg shadow hover:shadow-md">
                        <h3 class="font-semibold">Task 5</h3>
                        <p>Brief description of Task 5</p>
                    </div>
                </div>
            </div>
        </div>
    </div>
</div>
"Marketing Card"
<div class="max-w-sm rounded overflow-hidden shadow-lg bg-white">
  <img class="w-full" src="https://via.placeholder.com/400" alt="Marketing Image">
  <div class="px-6 py-4">
    <div class="font-bold text-xl mb-2">Effective Marketing Strategy</div>
    <p class="text-gray-700 text-base">
      Enhance your brand visibility and drive engagement with our innovative marketing solutions tailored to your needs.
    </p>
  </div>
  <div class="px-6 py-4">
    <span class="inline-block bg-blue-500 rounded-full px-3 py-1 text-sm font-semibold text-white mr-2">Strategy</span>
    <span class="inline-block bg-green-500 rounded-full px-3 py-1 text-sm font-semibold text-white">Engagement</span>
  </div>
  <div class="px-6 py-4">
    <button class="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded">
      Learn More
    </button>
  </div>
</div>