"use client"; import { useRouter } from "next/navigation"; import { useTranslations } from "next-intl"; export default function HeroSection() { const t = useTranslations("landing"); const router = useRouter(); return (
{/* Glow effect */}
{/* Version badge */}
{t("versionLive")}
{/* Main heading */}

{t("oneEndpoint")}
{t("allProviders")}

{/* Description */}

{t("heroDescription")}

{/* CTA Buttons */}
{t("viewOnGithub")}
); }