feat / AEB-26 login page

This commit is contained in:
Timofey Syrokvashko
2025-09-01 11:34:30 +03:00
parent 38a31824bc
commit 65a63235e5
37 changed files with 1185 additions and 49 deletions

View File

@@ -0,0 +1,12 @@
'use client'
import { Toaster } from 'react-hot-toast'
export default function AuthLayout({ children }: { children: React.ReactNode }) {
return (
<>
<Toaster />
{children}
</>
)
}