feat: Initialize PolyWeather frontend project with Next.js, including core dependencies, root layout, and a dashboard detail panel.

This commit is contained in:
2569718930@qq.com
2026-03-11 11:14:03 +08:00
parent d8cc193618
commit 3cbef28b13
4 changed files with 90 additions and 4 deletions
+2
View File
@@ -1,5 +1,6 @@
import type { Metadata } from "next";
import { Analytics } from "@vercel/analytics/react";
import { SpeedInsights } from "@vercel/speed-insights/next";
import "./globals.css";
export const metadata: Metadata = {
@@ -28,6 +29,7 @@ export default function RootLayout({
<body className="min-h-screen font-sans antialiased">
{children}
<Analytics />
<SpeedInsights />
</body>
</html>
);