Compare commits

...

2 commits

Author SHA1 Message Date
Dariusz Niemczyk aadc26639f
SPINNING ONION YOOOOOOOOOOO
Some checks failed
/ deploy (push) Failing after 1s
2025-02-13 02:40:06 +01:00
Dariusz Niemczyk 1345800915
cleanup: remove incorrectly placed oxanium font 2025-02-13 02:39:59 +01:00
2 changed files with 11 additions and 1 deletions

Binary file not shown.

View file

@ -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>
)
} }