## Deskripsi:
- Tampilan Map
- Tambah pin map
### No Issue
This commit is contained in:
2024-08-13 17:31:31 +08:00
parent 6ffeb097e8
commit 059cbe6b0f
29 changed files with 1019 additions and 8 deletions

View File

@@ -0,0 +1,9 @@
import { Map_CreateNewPin } from "@/app_modules/map/view";
export default async function Page() {
return (
<>
<Map_CreateNewPin />
</>
);
}

View File

@@ -0,0 +1,14 @@
import ComponentGlobal_IsEmptyData from "@/app_modules/_global/component/is_empty_data";
import { Map_View } from "@/app_modules/map/view";
const mapboxToken = process.env.MAPBOX_TOKEN!;
export default async function Page() {
if (!mapboxToken)
return <ComponentGlobal_IsEmptyData text="Mapbox token not found" />;
return (
<>
<Map_View mapboxToken={mapboxToken} />
</>
);
}

View File

@@ -0,0 +1,10 @@
import { Map_Splash } from "@/app_modules/map/view";
export default async function Page() {
return (
<>
<Map_Splash />
</>
);
}