SPINNING ONION YOOOOOOOOOOO
Some checks failed
/ deploy (push) Failing after 53s

This commit is contained in:
Dariusz Niemczyk 2025-02-13 02:40:06 +01:00 committed by palid
parent 07714ef782
commit bb8c5ec6d0

View file

@ -1,4 +1,14 @@
"use client"
import Image from "next/image"
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>
)
}