feat: Implement initial weather dashboard with interactive map, city details, and API integration.

This commit is contained in:
2569718930@qq.com
2026-03-09 10:36:03 +08:00
parent d162b91ed9
commit 283a935f24
35 changed files with 5962 additions and 2098 deletions
@@ -0,0 +1,17 @@
"use client";
import dynamic from "next/dynamic";
const PolyWeatherDashboard = dynamic(
() =>
import("@/components/dashboard/PolyWeatherDashboard").then(
(module) => module.PolyWeatherDashboard,
),
{
ssr: false,
},
);
export function DashboardEntry() {
return <PolyWeatherDashboard />;
}