修复了登录页面还存在顶部导航栏的问题

This commit is contained in:
2025-10-21 09:49:59 +08:00
parent 5c783c73e1
commit 4a5d278d89
121 changed files with 5626 additions and 286 deletions

View File

@@ -0,0 +1,15 @@
"use client"
import '@/styles/globals.css'
export default function RootLayout({
}: {
children: React.ReactNode
}) {
return (
<html lang="zh-CN">
<body >
</body>
</html>
)
}

View File

@@ -0,0 +1,8 @@
export default function HomePage() {
return (
<div className="">
</div>
)
}