blob: 56455c350a13147a7831512d757c3c9feedf8b09 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
import Image from "next/image";
export default function Loading() {
return (
<div className="fixed inset-0 z-[9999] bg-background flex items-center justify-center">
{/* Background pattern */}
<div className="absolute inset-0 bg-gradient-to-br from-background via-background to-muted/20" />
{/* Loading content */}
<div className="relative z-10 flex flex-col items-center space-y-4">
{/* Logo with animation */}
<div className="relative">
<div className="animate-pulse">
<Image
src="/black-logo.png"
alt="blcklst"
width={160}
height={50}
className="h-12 w-auto block dark:hidden"
priority
/>
<Image
src="/white-logo.png"
alt="blcklst"
width={160}
height={50}
className="h-12 w-auto hidden dark:block"
priority
/>
</div>
</div>
{/* Loading text - closer to logo */}
<div className="text-center space-y-3 -mt-2">
<p className="text-sm text-muted-foreground animate-pulse">
not everyone gets blcklsted
</p>
{/* Loading dots */}
<div className="flex items-center justify-center space-x-1">
<div className="w-2 h-2 bg-foreground/60 rounded-full animate-bounce [animation-delay:-0.3s]"></div>
<div className="w-2 h-2 bg-foreground/60 rounded-full animate-bounce [animation-delay:-0.15s]"></div>
<div className="w-2 h-2 bg-foreground/60 rounded-full animate-bounce"></div>
</div>
</div>
{/* Progress bar */}
<div className="w-64 h-1 bg-muted rounded-full overflow-hidden">
<div className="h-full bg-foreground rounded-full animate-[loading_1s_ease-in-out_infinite]"></div>
</div>
</div>
</div>
);
}
|