登陆页面功能,优化项目结构,字体字重重新调整

This commit is contained in:
2025-03-19 12:59:25 +08:00
parent 705af45d2a
commit eaae095d0e
20 changed files with 194 additions and 561 deletions

View File

@@ -3,8 +3,6 @@ import {Metadata} from 'next'
import './globals.css'
import localFont from 'next/font/local'
const font = localFont({src: './SourceHanSansSC-VF.otf.woff2'})
export const metadata: Metadata = {
title: 'Create Next App',
description: 'Generated by create next app',
@@ -17,7 +15,7 @@ export default function RootLayout({
}>) {
return (
<html lang="zh-Cn">
<body className={`${font.className} bg-blue-50`}>
<body className={`bg-blue-50`}>
{children}
</body>
</html>