Spaces:
Configuration error
Configuration error
File size: 534 Bytes
bcce530 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | import { Loader2 } from "lucide-react"
export default function FrameworksLoading() {
return (
<div className="container mx-auto px-4 py-8 max-w-6xl">
<div className="flex items-center justify-center min-h-[400px]">
<div className="text-center">
<Loader2 className="h-8 w-8 animate-spin mx-auto mb-4 text-muted-foreground" />
<p className="text-muted-foreground">Loading Frameworks...</p>
</div>
</div>
</div>
)
}
|