Add landing page and move dashboard to /dashboard

This commit is contained in:
2569718930@qq.com
2026-03-21 15:30:23 +08:00
parent dd720582d5
commit 6aa3a7dda8
4 changed files with 1034 additions and 4 deletions
+12
View File
@@ -0,0 +1,12 @@
import type { Metadata } from "next";
import { DashboardEntry } from "@/components/dashboard/DashboardEntry";
export const metadata: Metadata = {
title: "PolyWeather - Global Weather Intelligence Map",
description:
"PolyWeather dashboard with METAR, MGM, DEB fusion forecast, multi-model comparison, and history reconciliation.",
};
export default function DashboardPage() {
return <DashboardEntry />;
}
+4 -4
View File
@@ -1,12 +1,12 @@
import type { Metadata } from "next";
import { DashboardEntry } from "@/components/dashboard/DashboardEntry";
import { LandingPage } from "@/components/landing/LandingPage";
export const metadata: Metadata = {
title: "PolyWeather - Global Weather Intelligence Map",
title: "PolyWeather | Weather Market Intelligence",
description:
"PolyWeather dashboard with METAR, MGM, DEB fusion forecast, multi-model comparison, and history reconciliation.",
"PolyWeather turns real-time weather observations and model spreads into settlement-focused probabilities, market scan signals, and Pro decision support.",
};
export default function HomePage() {
return <DashboardEntry />;
return <LandingPage />;
}