11 lines
418 B
TypeScript
11 lines
418 B
TypeScript
export default function Loading() {
|
|
return (
|
|
<div className="h-[400px] flex items-center justify-center">
|
|
<div className="flex flex-col items-center gap-4">
|
|
<div className="w-12 h-12 border-4 border-indigo-600 border-t-transparent rounded-full animate-spin"></div>
|
|
<p className="text-sm font-medium text-slate-500 animate-pulse">Inhalte werden geladen...</p>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|