import type { JSX } from "react" import { getTranslations } from "next-intl/server" import { X } from "lucide-react" import { Section } from "@/components/ui/section" import { Link } from "@/i18n/routing" export async function PainPointsSection(): Promise { const t = await getTranslations("manifesto") const painPointKeys = ["fixing", "syntax", "copyPasting", "reviewing"] as const return (
{t("bottleneck")}

{t("autonomousCar")}

{t("whyDifferent")}

{t("micromanagement")}

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

{t("notCollaboration")}

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

) }