import Link from 'next/link'; import { redirect } from 'next/navigation'; import { SignUpForm } from '~/components/forms/signup'; type SignUpPageProps = { searchParams: { email?: string; }; }; export default function SignUpPage({ searchParams }: SignUpPageProps) { if (process.env.NEXT_PUBLIC_DISABLE_SIGNUP === 'true') { redirect('/signin'); } const email = typeof searchParams.email === 'string' ? searchParams.email : undefined; return (

Create a new account

Create your account and start using state-of-the-art document signing. Open and beautiful signing is within your grasp.

Already have an account?{' '} Sign in instead

); }