2026-03-09 10:36:03 +08:00
|
|
|
import type { Metadata } from "next";
|
|
|
|
|
import { DashboardEntry } from "@/components/dashboard/DashboardEntry";
|
|
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
2026-03-10 04:45:40 +08:00
|
|
|
title: "PolyWeather - Global Weather Intelligence Map",
|
2026-03-09 10:36:03 +08:00
|
|
|
description:
|
2026-03-10 04:45:40 +08:00
|
|
|
"PolyWeather dashboard with METAR, MGM, DEB fusion forecast, multi-model comparison, and history reconciliation.",
|
2026-03-09 10:36:03 +08:00
|
|
|
};
|
2026-03-09 04:41:24 +08:00
|
|
|
|
2026-03-09 10:36:03 +08:00
|
|
|
export default function HomePage() {
|
|
|
|
|
return <DashboardEntry />;
|
|
|
|
|
}
|