import { useTranslation } from "react-i18next"; export default function HeroSection() { const { t } = useTranslation(); return (

{t('hero.hello')}

{t('hero.student')} {" "}
{t('hero.passion')}

{t('hero.description')}
{t('hero.goal')}

Hero Section
); }