diff --git a/app/layout.tsx b/app/layout.tsx index f7fa87e..e4ac554 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,20 +1,13 @@ -import type { Metadata } from "next"; -import { Geist, Geist_Mono } from "next/font/google"; -import "./globals.css"; +// app/layout.tsx +import type { Metadata } from 'next'; +import { Inter } from 'next/font/google'; +import './globals.css'; -const geistSans = Geist({ - variable: "--font-geist-sans", - subsets: ["latin"], -}); - -const geistMono = Geist_Mono({ - variable: "--font-geist-mono", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ['latin'] }); export const metadata: Metadata = { - title: "Create Next App", - description: "Generated by create next app", + title: '资源下载 - 选择项目和版本', + description: '内网 APK 资源下载工具', }; export default function RootLayout({ @@ -23,12 +16,8 @@ export default function RootLayout({ children: React.ReactNode; }>) { return ( - - - {children} - + + {children} ); }