import React from "react"; import { ExternalLink } from "lucide-react"; import { Card, CardHeader, CardTitle, CardContent, CardDescription, Badge } from "@/components/ui"; const integrations = [ { name: "Confluence", description: "Automatically publish RCA and post-mortem documents to your Confluence workspace. Supports page creation, space selection, and template mapping.", features: ["Auto-publish documents", "Space & page selection", "Template mapping", "Version sync"], }, { name: "ServiceNow", description: "Link triage sessions to ServiceNow incidents. Pull incident details for context, push resolution steps, and update incident status upon completion.", features: ["Incident linking", "Status sync", "Resolution push", "CMDB enrichment"], }, { name: "Azure DevOps", description: "Create and link work items in Azure DevOps. Attach RCA documents to bug reports, create follow-up tasks from resolution steps, and sync status.", features: ["Work item creation", "Document attachment", "Task sync", "Pipeline triggers"], }, ]; export default function Integrations() { return (

Integrations

Connect TFTSR with your existing tools and platforms.

{integrations.map((integration) => (
Coming in v0.2
{integration.name} {integration.description}
    {integration.features.map((feature) => (
  • {feature}
  • ))}
))}
); }