Files
web/src/app/layout.tsx

26 lines
523 B
TypeScript
Raw Normal View History

2025-03-11 14:57:23 +08:00
import {ReactNode} from 'react'
import {Metadata} from 'next'
import './globals.css'
import localFont from 'next/font/local'
2025-03-04 10:10:35 +08:00
2025-03-11 14:57:23 +08:00
const font = localFont({src: './SourceHanSansSC-VF.otf.woff2'})
2025-03-04 10:10:35 +08:00
export const metadata: Metadata = {
2025-03-11 14:57:23 +08:00
title: 'Create Next App',
description: 'Generated by create next app',
}
2025-03-04 10:10:35 +08:00
export default function RootLayout({
children,
}: Readonly<{
2025-03-11 14:57:23 +08:00
children: ReactNode;
2025-03-04 10:10:35 +08:00
}>) {
return (
2025-03-11 14:57:23 +08:00
<html lang="zh-Cn">
<body className={font.className}>
2025-03-04 10:10:35 +08:00
{children}
</body>
</html>
2025-03-11 14:57:23 +08:00
)
2025-03-04 10:10:35 +08:00
}