Pagination Basic
<div class="flex justify-center my-8">
<div class="flex rounded-md overflow-hidden">
<button class="px-4 py-2 bg-white border border-gray-300 text-gray-700 hover:bg-gray-100">1</button>
<button class="px-4 py-2 bg-blue-600 border border-blue-600 text-white">2</button>
<button class="px-4 py-2 bg-white border border-gray-300 text-gray-700 hover:bg-gray-100">3</button>
<button class="px-4 py-2 bg-white border border-gray-300 text-gray-700 hover:bg-gray-100">4</button>
</div>
</div>
Copied to clipboard