2026-03-09 10:36:03 +08:00
import type { Metadata } from "next" ;
2026-03-21 15:30:23 +08:00
import { LandingPage } from "@/components/landing/LandingPage" ;
2026-03-09 04:41:24 +08:00
2026-03-09 10:36:03 +08:00
export const metadata : Metadata = {
2026-03-21 15:30:23 +08:00
title : "PolyWeather | Weather Market Intelligence" ,
2026-03-09 10:36:03 +08:00
description :
2026-03-21 15:30:23 +08:00
"PolyWeather turns real-time weather observations and model spreads into settlement-focused probabilities, market scan signals, and Pro decision support." ,
2026-03-09 10:36:03 +08:00
};
export default function HomePage() {
2026-03-21 15:30:23 +08:00
return < LandingPage />;
2026-03-09 10:36:03 +08:00
}