Initial release v1.0.0
This commit is contained in:
20
frontend/components/ui/LoadingScreen.tsx
Normal file
20
frontend/components/ui/LoadingScreen.tsx
Normal file
@@ -0,0 +1,20 @@
|
||||
import { GradientSpinner } from "./GradientSpinner";
|
||||
|
||||
interface LoadingScreenProps {
|
||||
message?: string;
|
||||
}
|
||||
|
||||
export function LoadingScreen({ message = "Loading..." }: LoadingScreenProps) {
|
||||
return (
|
||||
<div className="min-h-screen bg-black flex items-center justify-center">
|
||||
<div className="flex flex-col items-center gap-4">
|
||||
<GradientSpinner size="lg" />
|
||||
{message && (
|
||||
<p className="text-white text-sm font-medium">
|
||||
{message}
|
||||
</p>
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user