21 lines
506 B
TypeScript
21 lines
506 B
TypeScript
import type { Metadata } from "next";
|
|
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 (
|
|
<html lang="zh-CN" className="dark">
|
|
<body className="min-h-screen font-sans antialiased">
|
|
{children}
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|