| 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> | |
| ); | |
| } |