🚚 separating forms ui and logic
separate the form from other elements on the signup and login cards
This commit is contained in:
@ -1,4 +1,4 @@
|
||||
import LoginCard from "@/widgets/login/loginCard/Index";
|
||||
import LoginCard from "@/widgets/authentication/login/LoginCard";
|
||||
import React from "react";
|
||||
|
||||
const page = () => {
|
||||
|
||||
@ -1,10 +1,10 @@
|
||||
import { Link } from "@heroui/react";
|
||||
import SignupCard from "@/widgets/authentication/signup/SignupCard";
|
||||
import React from "react";
|
||||
|
||||
const page = () => {
|
||||
return (
|
||||
<div>
|
||||
<h1>Hello world</h1>
|
||||
<div className="fixed z-10 w-screen h-screen flex justify-center items-center -mt-12">
|
||||
<SignupCard />
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user