complete login forgot signup page - init project

This commit is contained in:
Alihaghighattalab
2024-08-04 19:47:09 +03:30
commit 7c22c9e132
31 changed files with 21027 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
import { Outlet } from "react-router-dom"
export const AuthLayout = () => {
return (
<section
className="flex flex-row h-screen p-5 justify-center items-center xl:justify-stretch xl:items-stretch max-h-[750px]">
<Outlet />
</section>
)
}