Card.tsx
export function Card({ title, description }) {
  return (
    <div className="rounded-xl border p-6">
      <h3 className="text-lg font-semibold">{title}</h3>
      <p className="mt-2 text-gray-600">{description}</p>
    </div>
  )
}

Preview

Getting Started

Learn how to set up your project and start building with our comprehensive guide.