import type { Metadata } from "next"; import { Analytics } from "@vercel/analytics/react"; import "./globals.css"; export const metadata: Metadata = { title: "PolyWeather | Weather Intelligence", description: "PolyWeather pro dashboard with global weather risk map and city analytics.", }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode }>) { return ( {children} ); }