// app/layout.tsx import type { Metadata } from 'next'; import { Inter } from 'next/font/google'; import './globals.css'; const inter = Inter({ subsets: ['latin'], display: 'swap' }); export const metadata: Metadata = { title: '资源下载 - 选择项目和版本', description: '内网 APK 资源下载工具', }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children} ); }