Files
conve-x/src/app/signup/[[...signup]]/page.tsx
T

16 lines
282 B
TypeScript
Raw Normal View History

2023-09-09 20:05:10 -05:00
import { SignUp } from '@clerk/nextjs';
export default function SignUpPage() {
return (
<main className='flex flex-col items-center'>
2023-09-09 20:10:35 -05:00
<SignUp
appearance={{
elements: {
card: 'shadow-md',
},
}}
/>
2023-09-09 20:05:10 -05:00
</main>
);
}