some fixes

This commit is contained in:
Khairul Hidayat 2024-01-17 02:02:50 +00:00
parent 2783561cfb
commit f0b448fd1f
2 changed files with 3 additions and 2 deletions

View File

@ -33,6 +33,7 @@ const BackgroundSlideshow = () => {
return pb.files.getUrl(artwork, artwork?.image); return pb.files.getUrl(artwork, artwork?.image);
}); });
}, },
refetchOnWindowFocus: false,
}); });
return ( return (

View File

@ -2,8 +2,8 @@ import loadingIllust from "@/assets/images/l9fsdoa2j7vb1.gif";
const LoadingPage = () => { const LoadingPage = () => {
return ( return (
<div className="min-h-[90vh] flex flex-col items-center justify-center text-center"> <div className="h-screen flex flex-col items-center justify-center text-center bg-slate-900 text-white">
<img src={loadingIllust} className="h-40 animate-bounce" /> <img src={loadingIllust} className="h-24 animate-bounce rounded-full" />
<p className="mt-2">Please wait a moment...</p> <p className="mt-2">Please wait a moment...</p>
</div> </div>
); );