Spaces:
Paused
Paused
File size: 1,043 Bytes
054d282 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
export default function loading() {
return (
<div className="pt-10 mx-2 lg:pl-52 max-w-6xl flex sm:space-x-4 flex-col sm:flex-row pb-42">
<div className="animate-pulse">
<div className="h-48 w-48 mb-4 bg-gray-200 rounded-md"></div>
<div className="h-2 w-48 mb-2.5 bg-gray-200 rounded-md"></div>
<div className="h-2 w-44 mb-2.5 bg-gray-200 rounded-md"></div>
</div>
<div className="hidden sm:inline-flex sm:space-x-4">
<div className="animate-pulse">
<div className="h-48 w-48 mb-4 bg-gray-200 rounded-md"></div>
<div className="h-2 w-48 mb-2.5 bg-gray-200 rounded-md"></div>
<div className="h-2 w-44 mb-2.5 bg-gray-200 rounded-md"></div>
</div>
<div className="animate-pulse">
<div className="h-48 w-48 mb-4 bg-gray-200 rounded-md"></div>
<div className="h-2 w-48 mb-2.5 bg-gray-200 rounded-md"></div>
<div className="h-2 w-44 mb-2.5 bg-gray-200 rounded-md"></div>
</div>
</div>
</div>
);
}
|