🏗️ creating layouts for login and signup

This commit is contained in:
2025-08-05 10:23:15 +07:00
parent 6b491bccd4
commit 77857d5575
7 changed files with 26 additions and 29 deletions

View File

@ -0,0 +1,12 @@
import LoginCard from "@/widgets/login/loginCard/Index";
import React from "react";
const page = () => {
return (
<div className="fixed z-10 w-screen h-screen flex justify-center items-center -mt-12">
<LoginCard />
</div>
);
};
export default page;