Start working on UI

This commit is contained in:
Fuhrmann 2025-03-06 13:36:47 +01:00
parent 07208177fd
commit 8227b4141a
16 changed files with 701 additions and 581 deletions

View file

@ -1,9 +1,21 @@
import { Map } from "./components/Map";
import { Form } from "./components/Form";
import { MapSceneProvider } from "./providers/map-scene-provider";
export default function Home() {
return (
<div className="w-screen h-screen">
<main className="h-screen">
<Map></Map>
<MapSceneProvider>
<div className="flex h-full">
<div className="flex-1">
<Map></Map>
</div>
<div className="w-[480px] p-4 flex flex-col items-center">
<Form></Form>
</div>
</div>
</MapSceneProvider>
</main>
</div>
);