From 9dd01e1291193b0aaa519e8e44debb30b11f3516 Mon Sep 17 00:00:00 2001 From: Bob Burningham Date: Sat, 7 Oct 2023 13:14:34 -0700 Subject: [PATCH] added signup and signin pages --- app/(auth)/(routes)/sign-in/[[...sign-in]]/page.tsx | 5 +++++ app/(auth)/(routes)/sign-up/[[...sign-up]]/page.tsx | 5 +++++ app/(auth)/layout.tsx | 9 +++++++++ 3 files changed, 19 insertions(+) create mode 100644 app/(auth)/(routes)/sign-in/[[...sign-in]]/page.tsx create mode 100644 app/(auth)/(routes)/sign-up/[[...sign-up]]/page.tsx create mode 100644 app/(auth)/layout.tsx diff --git a/app/(auth)/(routes)/sign-in/[[...sign-in]]/page.tsx b/app/(auth)/(routes)/sign-in/[[...sign-in]]/page.tsx new file mode 100644 index 0000000..a5b8cdd --- /dev/null +++ b/app/(auth)/(routes)/sign-in/[[...sign-in]]/page.tsx @@ -0,0 +1,5 @@ +import { SignIn } from "@clerk/nextjs"; + +export default function Page() { + return ; +} \ No newline at end of file diff --git a/app/(auth)/(routes)/sign-up/[[...sign-up]]/page.tsx b/app/(auth)/(routes)/sign-up/[[...sign-up]]/page.tsx new file mode 100644 index 0000000..fce1573 --- /dev/null +++ b/app/(auth)/(routes)/sign-up/[[...sign-up]]/page.tsx @@ -0,0 +1,5 @@ +import { SignUp } from "@clerk/nextjs"; + +export default function Page() { + return ; +} \ No newline at end of file diff --git a/app/(auth)/layout.tsx b/app/(auth)/layout.tsx new file mode 100644 index 0000000..ccd238e --- /dev/null +++ b/app/(auth)/layout.tsx @@ -0,0 +1,9 @@ +const AuthLayout = ({ children }: { children: React.ReactNode}) => { + return ( +
+ {children} +
+ ); +} + +export default AuthLayout; \ No newline at end of file