Files
AnimeTV-Frontend/app/(auth)/log-in/page.tsx
Rafi Arrafif fcebe9708d 🚚 separating forms ui and logic
separate the form from other elements on the signup and login cards
2025-08-05 10:40:21 +07:00

13 lines
278 B
TypeScript

import LoginCard from "@/widgets/authentication/login/LoginCard";
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;