frontend/app/components/loader.tsx
2025-07-30 17:05:07 +02:00

20 lines
709 B
TypeScript

export default function Loader() {
return (
<div className="min-h-screen flex items-center justify-center">
<div className="flex flex-col items-center space-y-4">
<div className="flex space-x-2">
<div className="w-3 h-3 bg-primary rounded-full animate-bounce"></div>
<div
className="w-3 h-3 bg-primary rounded-full animate-bounce"
style={{ animationDelay: "0.1s" }}
></div>
<div
className="w-3 h-3 bg-primary rounded-full animate-bounce"
style={{ animationDelay: "0.2s" }}
></div>
</div>
<h2 className="text-primary text-sm">Chargement...</h2>
</div>
</div>
);
}