File size: 550 Bytes
136f9cf |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
interface LoadingScreenProps {
message?: string;
}
export function LoadingScreen({ message = "Loading..." }: LoadingScreenProps) {
return (
<div className="fixed inset-0 flex flex-col items-center justify-center bg-background/80 backdrop-blur-sm z-50">
<div className="flex flex-col items-center gap-4 p-6 rounded-lg bg-card shadow-lg">
<div className="animate-spin rounded-full h-12 w-12 border-b-2 border-primary"></div>
<p className="text-lg font-medium text-foreground">{message}</p>
</div>
</div>
);
} |