18 lines
589 B
JavaScript
18 lines
589 B
JavaScript
import { motion } from 'framer-motion';
|
|
import { itemVariants } from '../Animation/HeaderLoginAnimation';
|
|
import Link from 'next/link';
|
|
import { useTranslation } from 'react-i18next';
|
|
export default function CreateNewAccount() {
|
|
const {t}=useTranslation()
|
|
return (
|
|
<>
|
|
<motion.p variants={itemVariants} className="text-center text-gray-400 mt-6">
|
|
{t("noAccount")}{" "}
|
|
<Link href="/auth/choose-role" className="text-amber-400 hover:text-amber-300 font-medium transition-colors">
|
|
{t("createNewAccount")}
|
|
</Link>
|
|
</motion.p>
|
|
</>
|
|
);
|
|
}
|