2026-03-09 10:36:03 +08:00
|
|
|
import type { Metadata } from "next";
|
2026-03-21 15:34:19 +08:00
|
|
|
import { DashboardEntry } from "@/components/dashboard/DashboardEntry";
|
2026-03-09 10:36:03 +08:00
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
2026-03-21 15:34:19 +08:00
|
|
|
title: "PolyWeather - Global Weather Intelligence Map",
|
2026-03-09 10:36:03 +08:00
|
|
|
description:
|
2026-05-18 23:25:16 +08:00
|
|
|
"PolyWeather dashboard with METAR, MGM, DEB fusion forecast, multi-model comparison, and AI weather decision cards.",
|
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() {
|
2026-03-21 15:34:19 +08:00
|
|
|
return <DashboardEntry />;
|
2026-03-09 10:36:03 +08:00
|
|
|
}
|