import type { JSX } from "react" import { getTranslations } from "next-intl/server" import { Zap } from "lucide-react" import { Section } from "@/components/ui/section" export async function TokenCostSection(): Promise { const t = await getTranslations("manifesto") return (

{t("tokenCost.title")}

{t("tokenCost.description")}

  • {t("tokenCost.parallelAgents")}
  • {t("tokenCost.completeWork")}
  • {t("tokenCost.selfVerification")}

{t("tokenCost.however")}

{t("tokenCost.optimizeDescription")}

  • {t("tokenCost.cheaperModels")}
  • {t("tokenCost.avoidingRedundant")}
  • {t("tokenCost.intelligentCaching")}
  • {t("tokenCost.stoppingExactly")}
) }