import type { JSX } from "react" import { getTranslations } from "next-intl/server" import { HardDrive } from "lucide-react" import { Badge } from "@/components/ui/badge" import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card" export async function SisyphusSection(): Promise { const t = await getTranslations("landing") return (
{t("sisyphus.badge")} {t("sisyphus.model")}

{t("sisyphus.title")}

{t("sisyphus.headline")}

{t("sisyphus.description")}

{(["intent", "explore", "delegate", "verify"] as const).map((phase, i) => (
PHASE {i + 1}
{t(`sisyphus.phases.${phase}.title`)}

{t(`sisyphus.phases.${phase}.description`)}

))}

{t("sisyphus.boulderTitle")}

{t("sisyphus.boulderDescription")}

) }