import { GithubSignInForm } from "@/components/github-sign-in-form"; import { CredentialsSignInForm } from "@/components/credentials-sign-in-form"; import {useTranslations} from 'next-intl'; export function SignInForm() { const t = useTranslations('sign-in-form'); return (

{t('Sign in to your account')}

{t('Enter your email below to sign in to your account')}

{t('Or')}
{t('Don't have an account?')}{" "} {t('Sign up')}
); }