Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
349 changes: 306 additions & 43 deletions src/api/requests.ts

Large diffs are not rendered by default.

34 changes: 26 additions & 8 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,30 @@
import Navbar from "@/components/shared/navbar";
import Newmap from "../components/map/Map";

export default function Home() {
return (
<div style={{overflow: "hidden", height: "100%", width: "100%", margin: 0}}>
{/*<NavBar/>*/}
<div style={{marginTop: "50px"}}>
<Newmap/>
</div>
</div>
);
return (
<div
style={{ overflow: "hidden", height: "100%", width: "100%", margin: 0 }}
>
<Navbar />
<div style={{ marginTop: "50px" }}>
<Newmap />
</div>
</div>
);
}

// import Newmap from "../components/map/Map";

// export default function Home() {
// return (
// <div
// style={{ overflow: "hidden", height: "100%", width: "100%", margin: 0 }}
// >
// {/*<NavBar/>*/}
// <div style={{ marginTop: "50px" }}>
// <Newmap />
// </div>
// </div>
// );
// }
Loading