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 ( <> {t("register.haveAccount")} {t("register.loginLink")} ); }