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

{t("hephaestus.title")}

{t("hephaestus.headline")}

{t("hephaestus.description")}

{(["explore", "plan", "decide", "execute", "verify"] as const).map((step, i) => (
0{i + 1}

{t(`hephaestus.loop.${step}`)}

))}

{t("hephaestus.tagline")}

) }