diff --git a/src/pages/home/page.tsx b/src/pages/home/page.tsx index f647f61..1f54954 100644 --- a/src/pages/home/page.tsx +++ b/src/pages/home/page.tsx @@ -33,6 +33,7 @@ const BackgroundSlideshow = () => { return pb.files.getUrl(artwork, artwork?.image); }); }, + refetchOnWindowFocus: false, }); return ( diff --git a/src/pages/misc/loading-page.tsx b/src/pages/misc/loading-page.tsx index 493aaa1..a06d1c5 100644 --- a/src/pages/misc/loading-page.tsx +++ b/src/pages/misc/loading-page.tsx @@ -2,8 +2,8 @@ import loadingIllust from "@/assets/images/l9fsdoa2j7vb1.gif"; const LoadingPage = () => { return ( - <div className="min-h-[90vh] flex flex-col items-center justify-center text-center"> - <img src={loadingIllust} className="h-40 animate-bounce" /> + <div className="h-screen flex flex-col items-center justify-center text-center bg-slate-900 text-white"> + <img src={loadingIllust} className="h-24 animate-bounce rounded-full" /> <p className="mt-2">Please wait a moment...</p> </div> );