import { useTranslation } from "react-i18next"; import HeroImg from "../../../assets/HeroImg.svg"; import Stars from "../../../assets/Stars.svg"; const Hero = () => { const { t } = useTranslation(); const handleNavigation = (path: string) => { const element = document.getElementById(path); element?.scrollIntoView({ behavior: "smooth" }); }; return (
hero
hero

{t("hero.heading.part1")}

{t("hero.heading.part2")}

heroSm

{t("hero.subheading.part1")}

{t("hero.subheading.part2")}

); }; export default Hero;