feat(auth): Add new authentication page
A new authentication page has been added to the application. It includes an AuthForms component and uses a flex display for layout, with specific height and width properties set.
This commit is contained in:
parent
0ead6bd969
commit
3a8621735e
10
src/app/auth/page.tsx
Normal file
10
src/app/auth/page.tsx
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
import { AuthForms } from "@/components/auth-form";
|
||||||
|
import Image from "next/image";
|
||||||
|
|
||||||
|
export default function AuthPage() {
|
||||||
|
return (
|
||||||
|
<main className="flex flex-col items-center justify-start h-full w-2/4">
|
||||||
|
<AuthForms />
|
||||||
|
</main>
|
||||||
|
);
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user