pollo/src/app/sign-up/[[...sign-up]]/page.tsx

22 lines
382 B
TypeScript
Raw Normal View History

2023-08-27 23:57:17 -06:00
"use client";
2023-08-12 17:12:42 -06:00
import { SignUp } from "@clerk/nextjs";
2023-08-27 23:57:17 -06:00
export const dynamic = "force-static";
2023-08-12 17:12:42 -06:00
const SignUpPage = () => (
<div style={styles}>
<SignUp path="/sign-up" routing="path" signInUrl="/sign-in" />
</div>
);
export default SignUpPage;
const styles = {
width: "100vw",
height: "100vh",
display: "flex",
justifyContent: "center",
alignItems: "center",
};