From 3a8621735ea6b1d0426cf123f76d976a9f5be39b Mon Sep 17 00:00:00 2001 From: Mathis Date: Fri, 14 Jun 2024 12:47:17 +0200 Subject: [PATCH] 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. --- src/app/auth/page.tsx | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/app/auth/page.tsx diff --git a/src/app/auth/page.tsx b/src/app/auth/page.tsx new file mode 100644 index 0000000..7ade88d --- /dev/null +++ b/src/app/auth/page.tsx @@ -0,0 +1,10 @@ +import { AuthForms } from "@/components/auth-form"; +import Image from "next/image"; + +export default function AuthPage() { + return ( +
+ +
+ ); +}