import { motion } from 'framer-motion'; import { useTranslation } from 'react-i18next'; export default function HeroSection() { const {t} =useTranslation() return ( <> {t("heroTitleLine1")}
{t("heroTitleLine2")}
{t("heroSubtitle")}
); }