src/components/loading-screen.tsx 363 B raw
1
import { Loader2 } from "lucide-react";
2
3
export function LoadingScreen() {
4
	return (
5
		<div className="min-h-screen w-full flex items-center justify-center">
6
			<div className="flex flex-col items-center gap-4">
7
				<Loader2 className="h-8 w-8 animate-spin text-primary" />
8
				<p className="text-sm text-muted-foreground">Loading...</p>
9
			</div>
10
		</div>
11
	);
12
}