"use client"; import { useTranslations } from "next-intl"; export default function HowItWorks() { const t = useTranslations("landing"); return (

{t("howItWorks")}

{t("howItWorksDescription")}

{/* Connection line */}
{/* Step 1: CLI & SDKs */}

{t("howItWorksStep1Title")}

{t("howItWorksStep1Description")}

{/* Step 2: OmniRoute Hub */}

{t("howItWorksStep2Title")}

{t("howItWorksStep2Description")}

{/* Step 3: AI Providers */}

{t("howItWorksStep3Title")}

{t("howItWorksStep3Description")}

); }