24 lines
533 B
TypeScript
24 lines
533 B
TypeScript
// 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 (
|
|
<html lang="zh-CN">
|
|
<body className={inter.className}>{children}</body>
|
|
</html>
|
|
);
|
|
}
|