feat: Initialize Next.js frontend project with core dependencies and root layout.

This commit is contained in:
2569718930@qq.com
2026-03-06 20:48:19 +08:00
parent 728d5aabd2
commit 70585d6c74
3 changed files with 47 additions and 0 deletions
+2
View File
@@ -1,4 +1,5 @@
import type { Metadata } from "next";
import { Analytics } from "@vercel/analytics/react";
import "./globals.css";
export const metadata: Metadata = {
@@ -14,6 +15,7 @@ export default function RootLayout({
<html lang="zh-CN" className="dark">
<body className="min-h-screen font-sans antialiased">
{children}
<Analytics />
</body>
</html>
);