Compare commits

..

No commits in common. "bb8c5ec6d092aa10247378f2b6c6b5b87f0ce3e8" and "41bfff995598bed7d7ded88b320e75f03264fdf8" have entirely different histories.

2 changed files with 1 additions and 11 deletions

Binary file not shown.

View file

@ -1,14 +1,4 @@
"use client"
import Image from "next/image"
export default function Loading() {
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>
)
return <div>Loading...</div>
}