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

{t("prometheusAtlas.title")}

{t("prometheusAtlas.headline")}

{t("prometheusAtlas.prometheus.model")}
{t("prometheusAtlas.prometheus.name")} {t("prometheusAtlas.prometheus.role")}

{t("prometheusAtlas.prometheus.description")}

    {([0, 1, 2, 3] as const).map((i) => (
  • {t(`prometheusAtlas.prometheus.features.${i}`)}
  • ))}
{t("prometheusAtlas.atlas.model")}
{t("prometheusAtlas.atlas.name")} {t("prometheusAtlas.atlas.role")}

{t("prometheusAtlas.atlas.description")}

    {([0, 1, 2, 3] as const).map((i) => (
  • {t(`prometheusAtlas.atlas.features.${i}`)}
  • ))}
{([1, 2, 3, 4, 5] as const).map((step, i) => (
{step}
{t(`prometheusAtlas.workflow.step${step}`)}
{i < 4 && ( )}
))}

{t("prometheusAtlas.whyItWorks")}

) }