18 lines
574 B
JavaScript
18 lines
574 B
JavaScript
import { motion } from "framer-motion";
|
|
import { useTranslation } from "react-i18next";
|
|
import { fadeInUp } from "./Animation/OwnerPageAnimation";
|
|
import Link from "next/link";
|
|
export default function HavAccount() {
|
|
const { t } = useTranslation();
|
|
return (
|
|
<>
|
|
<motion.p variants={fadeInUp} className="text-center text-gray-400 mt-4">
|
|
{t("register.haveAccount")}
|
|
<Link href="/login" className="text-blue-400 hover:text-blue-300 font-medium transition-colors">
|
|
{t("register.loginLink")}
|
|
</Link>
|
|
</motion.p>
|
|
</>
|
|
);
|
|
}
|