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:
Mathis H (Avnyr) 2024-06-14 12:47:17 +02:00
parent 0ead6bd969
commit 3a8621735e
Signed by: Mathis
GPG Key ID: DD9E0666A747D126

10
src/app/auth/page.tsx Normal file
View 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>
);
}