import { SignUpForm } from "@/components/auth/sign-up-form"
import { AuthShell } from "@/components/auth/auth-shell"

export default function SignUpPage() {
  return (
    <AuthShell
      title="Create your account"
      subtitle="Join thousands of people meeting face-to-face, instantly."
    >
      <SignUpForm />
    </AuthShell>
  )
}
