Compare commits

..

No commits in common. "aadc26639f4e2d7ff98e0ca8df0488b1920f78b4" and "f1caef10587615e305ebc25adfcebee26ebeb6f6" 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() { export default function Loading() {
return ( return <div>Loading...</div>
<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>
)
} }