feat: implement password

This commit is contained in:
shinya
2025-06-23 22:58:16 +08:00
parent 44cd7d0ed3
commit a9ad984564
9 changed files with 199 additions and 23 deletions

View File

@@ -3,6 +3,8 @@ import { Inter } from 'next/font/google';
import './globals.css';
import AuthProvider from '../components/AuthProvider';
const inter = Inter({ subsets: ['latin'] });
export const metadata: Metadata = {
@@ -18,7 +20,7 @@ export default function RootLayout({
return (
<html lang='zh-CN'>
<body className={`${inter.className} min-h-screen text-gray-900`}>
{children}
<AuthProvider>{children}</AuthProvider>
</body>
</html>
);