12 lines
279 B
TypeScript
12 lines
279 B
TypeScript
import { SignUpForm } from "@/components/sign-up-form";
|
|
|
|
export default function Page() {
|
|
return (
|
|
<div className="flex min-h-svh w-full items-center justify-center p-6 md:p-10">
|
|
<div className="w-full max-w-sm">
|
|
<SignUpForm />
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|