import type { JSX } from "react" import { getTranslations } from "next-intl/server" import { Badge } from "@/components/ui/badge" import { TerminalTypewriter } from "@/components/landing/motion-wrappers" export async function UltraworkSection(): Promise { const t = await getTranslations("landing") return (
{t("ulw.badge")}

{t("ulw.title")}

{t("ulw.headline")}

{t("ulw.description")}

{t("ulw.autoPlanning")} {t("ulw.deepResearch")} {t("ulw.selfCorrection")} {t("ulw.parallelAgents")}

{t("ulw.tagline")}

{t("ulw.terminalTitle")}
$ ~
{t("ulw.steps.scanning")}
{t("ulw.steps.context")}
{t("ulw.steps.planning")}
{t("ulw.steps.delegating")}
{t("ulw.steps.verifying")}
ok {t("ulw.steps.complete")}
$ ~ _
) }