import { useTranslations } from "next-intl";
import HeroButtons from "./HeroButtons";
import HeroTech from "./HeroTech";
export default function Hero() {
const t = useTranslations("home.hero");
return (
<>
{/* Top Badge */}
{t("badge")}
{/* Main Title */}
{t("title1")}
{t("title2")}
{/* Subtitle */}
{t("subtitle")}
{/* CTA Buttons */}
>
);
}