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

type SignUpPageProps = {
  params: Promise<{locale: string}>;
};

export default async function SignUpPage({params}: SignUpPageProps) {
  const {locale} = await params;

  return <SignUpForm locale={locale} />;
}