13 lines
521 B
TypeScript
13 lines
521 B
TypeScript
import { Loader2 } from 'lucide-react';
|
|
|
|
export default function Loading() {
|
|
return (
|
|
<div className="flex min-h-screen flex-col items-center justify-center p-6 bg-black text-center">
|
|
<div className="flex flex-col items-center gap-4">
|
|
<Loader2 size={40} className="animate-spin text-orange-600" />
|
|
<p className="text-zinc-500 font-bold animate-pulse uppercase tracking-widest text-[10px]">Whisky Vault wird geladen...</p>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|