Add landing page and move dashboard to dedicated route

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