完成页面的基础配置

This commit is contained in:
JIANG
2025-09-28 15:51:45 +08:00
parent e34dc99330
commit 6d1cc6c9a1
28 changed files with 9753 additions and 52 deletions

View File

@@ -0,0 +1,11 @@
"use client";
import MapComponent from "@app/OlMap/MapComponent";
export default function Home() {
return (
<div className="relative w-full h-full overflow-hidden">
<MapComponent />
</div>
);
}