import type { JSX } from "react" import { getTranslations } from "next-intl/server" import { ArrowRight, Terminal } from "lucide-react" import { Badge } from "@/components/ui/badge" import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card" import { Section } from "@/components/ui/section" export async function CognitiveLoadSection(): Promise { const t = await getTranslations("manifesto") const ultraworkStepKeys = ["analyze", "breakdown", "execute", "verify", "commit"] as const return (

{t("cognitiveLoad.title")}

{t("cognitiveLoad.subtitle")}

{t("cognitiveLoad.ultrawork.badge")} {t("cognitiveLoad.ultrawork.title")}

{t("cognitiveLoad.ultrawork.subtitle")}

{ultraworkStepKeys.map((key) => (

{t(`cognitiveLoad.ultrawork.steps.${key}`)}

))}
{t("cognitiveLoad.ultrawork.footer")}
{t("cognitiveLoad.prometheus.badge")} {t("cognitiveLoad.prometheus.title")}

{t("cognitiveLoad.prometheus.subtitle")}

{t("cognitiveLoad.prometheus.prometheusTitle")}

{t("cognitiveLoad.prometheus.prometheusDescription")}

{t("cognitiveLoad.prometheus.atlasTitle")}

{t("cognitiveLoad.prometheus.atlasDescription")}

{t("cognitiveLoad.prometheus.footer")}
) }