complete score page - complete transition for pages

This commit is contained in:
Alihaghighattalab
2024-08-19 13:29:46 +03:30
parent 09621e8230
commit ddb0075e2f
27 changed files with 178 additions and 38 deletions
+2 -3
View File
@@ -4,12 +4,11 @@ import { SocialsInterface } from "../../../types"
export const AuthLayout = () => {
return (
<section
className="flex flex-row min-h-screen p-5 justify-center items-center xl:justify-stretch xl:items-stretch max-h-[750px] overflow-y-hidden relative">
<>
<Outlet />
<footer className="hidden w-full xl:flex flex-row gap-x-2 justify-end !absolute left-4 bottom-4">
{socialsList?.map((item: SocialsInterface) => <img key={item?.name} src={item?.path} alt={item?.name} className="size-10 min-w-10 min-h-10 cursor-pointer" />)}
</footer>
</section>
</>
)
}