import { getTranslations } from "next-intl/server" import Image from "next/image" import { ArrowRight, Check, Terminal, Zap } from "lucide-react" import { Badge } from "@/components/ui/badge" import { Button } from "@/components/ui/button" import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card" import { Section } from "@/components/ui/section" import { Separator } from "@/components/ui/separator" import { Link } from "@/i18n/routing" async function ManifestoPage() { const t = await getTranslations("manifesto") const painPointKeys = ["fixing", "syntax", "copyPasting", "reviewing"] as const const indistinguishableKeys = [ "patterns", "errorHandling", "tests", "noSlop", "comments", ] as const const ultraworkStepKeys = ["analyze", "breakdown", "execute", "verify", "commit"] as const const coreLoopKeys = [ "prometheus", "metis", "momus", "orchestrator", "todoContinuation", "categorySystem", "backgroundAgents", "wisdomAccumulation", ] as const const futureKeys = ["focus", "quality", "complexity", "promptEngineering"] as const return (
Background
{t("badge")}

{t("hero.title")}

{t("hero.subtitle")}

{t("bottleneck")}

{t("autonomousCar")}

{t("whyDifferent")}

{t("micromanagement")}

    {painPointKeys.map((key) => (
  • {t(`painPoints.${key}`)}
  • ))}

{t("notCollaboration")}

{t("premiseLinkText")} {" "} {t("premise", { linkText: "" })}

{t("indistinguishable.title")}

{t("indistinguishable.subtitle")}

{indistinguishableKeys.map((key) => (
{t(`indistinguishable.items.${key}`)}
))}
{t("indistinguishable.quote")}

{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")}

{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")}
{(["predictable", "continuous", "delegatable"] as const).map((key) => (
{key}

{t(`principles.${key}.title`)}

{t(`principles.${key}.description`)}

))}

{t("coreLoop.title")}

Human Intent
Agent Execution
Verified Result

↻ Minimum Intervention

{coreLoopKeys.map((key) => ( {t(`coreLoop.features.${key}.feature`)}

{t(`coreLoop.features.${key}.purpose`)}

))}

{t("future.title")}

{futureKeys.map((key) => (
{t(`future.items.${key}`)}
))}

{t("future.quote1")}

{t("future.quote2")}

{t("finalCta.title")}

) } export default ManifestoPage