Organize your code snippets
quick component layouts and UI ideas.
JJiordi Viera
1 snippets
Updated 5 days ago
Public
Public
A basic card component styled with TailwindCSS, responsive across devices.
html
<div class="max-w-sm rounded-xl border bg-white shadow-sm p-4">
<h2 class="text-xl font-semibold mb-2">Card Title</h2>
<p class="text-gray-600">This is a simple description inside the card.</p>
<button class="mt-3 px-4 py-2 bg-blue-500 text-white rounded-lg hover:bg-blue-600">
Action
</b...
---