"use client"; import { useTranslations } from "next-intl"; import { ArrowRight, Sparkles } from "lucide-react"; import { Badge } from "@/components/ui/badge"; export function Hero() { const t = useTranslations("hero"); return (
{/* Badge */} {t("badge")} {/* Main Title */}

{t("title")}

{/* Subtitle */}

{t("subtitle")}

{/* CTA Buttons */}
{t("cta")} {t("secondary")}
); }