Files
gitlab-instance-0a899031_no…/app/page.tsx
2026-03-27 19:35:39 -05:00

17 lines
532 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import { HomePageSkeleton } from "./components/HomePageSkeleton";
import { HomeClientLoader } from "./HomeClientLoader";
export default function Page() {
return (
<div className="relative min-h-screen bg-[var(--background)]">
{/* SSR 即输出骨架JS 未执行前也不白屏 */}
<div className="pointer-events-none absolute inset-0 z-0 overflow-hidden">
<HomePageSkeleton />
</div>
<div className="relative z-[1] min-h-screen">
<HomeClientLoader />
</div>
</div>
);
}