pollo/src/pages/sign-up/[[...index]].tsx

18 lines
327 B
TypeScript
Raw Normal View History

2023-08-12 17:12:42 -06:00
import { SignUp } from "@clerk/nextjs";
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",
};