import {SignInForm} from "@/components/auth/sign-in-form";

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

export default async function SignInPage({params}: SignInPageProps) {
  const {locale} = await params;

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