This commit is contained in:
eric
2026-03-27 19:22:37 -05:00
parent 3eb0334114
commit e1ed5a56dc
4 changed files with 124 additions and 60 deletions

View File

@@ -4,7 +4,9 @@ import dynamic from "next/dynamic";
const HomeClient = dynamic(() => import("./HomeClient"), {
ssr: false,
loading: () => <div className="min-h-screen bg-[var(--background)]" aria-hidden />,
loading: () => (
<div className="min-h-screen bg-[var(--background)] text-[var(--foreground)]" aria-hidden />
),
});
export function HomeClientLoader() {