import React from "react"; export default function CapabilitiesSection() { const cards = [ { title: "Deconstruct", body: "The Case Manager Agent decomposes your initial problem statement into structured, testable hypotheses using dynamic JSON templates.", icon: ( // Code/Brackets outline SVG ), tags: ["Hypothesis Builder", "Logical Decomposition", "Structured JSON", "Case Manager"], }, { title: "Research", body: "The Research Agent formulates optimized search queries and crawls DuckDuckGo to retrieve real-time facts and snippet evidence without API keys.", icon: ( // Globe/Search outline SVG ), tags: ["DuckDuckGo Search", "Web Querying", "Evidence Fetching", "Research Agent"], }, { title: "Synthesize", body: "Categorizes evidence into supporting or contrary arguments, compiles final analysis conclusions, and marks the final verdict status.", icon: ( // Lightbulb outline SVG ), tags: ["Evidence Sorting", "Conflict Evaluation", "Structured Verdict", "Case Updates"], }, ]; return ( {/* Foreground Content */} {/* Header section */} Investigation evolved {/* Cards Row Grid */} {cards.map((card, idx) => ( {/* Card Header Top */} {/* Left Nested Icon Box */} {card.icon} {/* Right Tags pill container */} {card.tags.map((tag, tIdx) => ( {tag} ))} {/* Card content spacer */} {/* Card Bottom Body */} {card.title} {card.body} ))} ); }
{card.body}