added signup and signin pages

This commit is contained in:
Bob Burningham 2023-10-07 13:14:34 -07:00
parent 39e2caf39a
commit 9dd01e1291
3 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,5 @@
import { SignIn } from "@clerk/nextjs";
export default function Page() {
return <SignIn />;
}

View File

@ -0,0 +1,5 @@
import { SignUp } from "@clerk/nextjs";
export default function Page() {
return <SignUp />;
}

9
app/(auth)/layout.tsx Normal file
View File

@ -0,0 +1,9 @@
const AuthLayout = ({ children }: { children: React.ReactNode}) => {
return (
<div className="h-full flex items-center justify-center">
{children}
</div>
);
}
export default AuthLayout;