Files
accounts-manager-web/app/layout.tsx
cloud370 c864ced4ea feat: 自定义应用程序元数据和清理默认资源文件
- 更新应用标题为"账号管理系统"
- 更新应用描述为中文说明
- 删除不需要的Next.js默认SVG图标文件

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-24 06:04:13 +08:00

37 lines
776 B
TypeScript

import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
import { Toaster } from "@/components/ui/sonner";
const geistSans = Geist({
variable: "--font-geist-sans",
subsets: ["latin"],
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "账号管理系统",
description: "一个用于管理账号的Web应用程序",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
<body
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
>
{children}
<Toaster />
</body>
</html>
);
}