Compare commits
2 commits
f1caef1058
...
aadc26639f
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
aadc26639f | ||
|
|
1345800915 |
Binary file not shown.
|
|
@ -1,4 +1,14 @@
|
||||||
|
"use client"
|
||||||
|
|
||||||
|
import Image from "next/image"
|
||||||
|
|
||||||
export default function Loading() {
|
export default function Loading() {
|
||||||
return <div>Loading...</div>
|
return (
|
||||||
|
<div className="fixed inset-0 flex items-center justify-center bg-background/80 backdrop-blur-sm">
|
||||||
|
<div className="relative h-16 w-16 animate-spin">
|
||||||
|
<Image src="/web-app-manifest-512x512.png" alt="Loading..." fill className="object-contain" priority />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue