From ae1fa9a49353b4503d4837a12ff6b0f61e0f17e5 Mon Sep 17 00:00:00 2001 From: Fullstack Mechanic Date: Thu, 25 Jul 2024 06:51:44 +0100 Subject: [PATCH] fix sign up and organisation sign up --- src/app/(auth-routes)/layout.tsx | 5 + .../register/organisation/page.tsx | 177 +++++++++++---- src/app/(auth-routes)/register/page.tsx | 201 ++++++++++++------ src/components/ui/input.tsx | 5 +- src/components/ui/select.tsx | 3 +- 5 files changed, 280 insertions(+), 111 deletions(-) diff --git a/src/app/(auth-routes)/layout.tsx b/src/app/(auth-routes)/layout.tsx index e17f86071..5b1b9d02d 100644 --- a/src/app/(auth-routes)/layout.tsx +++ b/src/app/(auth-routes)/layout.tsx @@ -1,7 +1,12 @@ +import Footer from "~/components/layouts/footer"; +import Navbar from "~/components/layouts/navbar"; + function Layout({ children }: { children: React.ReactNode }) { return ( <> +
{children}
+