生产管理系统 - 登录,二维码功能集成

This commit is contained in:
2025-10-31 11:49:11 +08:00
parent 2fa64e66c9
commit 46ff61eaed
11 changed files with 1867 additions and 185 deletions

View File

@@ -0,0 +1,17 @@
import { ReactNode } from 'react'
import { AuthProvider } from '@/components/auth/AuthContext'
import '@/styles/globals.css'
export default function RegisterLayout({
children,
}: {
children: ReactNode
}) {
return (
<AuthProvider>
<div className="min-h-screen relative">
{children}
</div>
</AuthProvider>
)
}