diff --git a/src/app/page.tsx b/src/app/page.tsx index 5134a65..d505519 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -11,46 +11,4 @@ import { Toasts } from "@/components/Toasts" import { KeyboardNavigation } from "@/components/KeyboardNavigation" const Scene = dynamic(() => import("@/components/Scene").then((m) => ({ default: m.Scene })), { - ssr: false, -}) - -import { useEffect } from "react" -import { useAppState } from "@/lib/store" - -export default function Home({ initialObjectId }: { initialObjectId?: string | null }) { - const { setFocusedObjectId } = useAppState() - - useEffect(() => { - if (initialObjectId) { - setFocusedObjectId(initialObjectId) - } - }, [initialObjectId, setFocusedObjectId]) - - return ( -
- {/* Background 3D Space Scene */} - - - {/* HUD UI Layout Components */} -
- - - - - - {/* Floating Asteroid Inspector */} - - - {/* Global Keyboard Navigation */} - -
- ) -} +.catch(err => console.error(err)) \ No newline at end of file