Start working on UI
This commit is contained in:
parent
07208177fd
commit
8227b4141a
16 changed files with 701 additions and 581 deletions
14
app/page.tsx
14
app/page.tsx
|
@ -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>
|
||||
);
|
||||
|
|
Loading…
Add table
editor.link_modal.header
Reference in a new issue