"use client"; import { Badge, Card } from "ikoncomponents"; import { Github, Slack, Code2 } from "lucide-react"; import Image from "next/image"; const integrations = [ { name: "Slack", icon: Slack, color: "text-purple-400" }, { name: "GitHub", icon: Github, color: "text-gray-400" }, { name: "Jira", image: "/jira.svg", color: "text-blue-400" }, { name: "API", icon: Code2, color: "text-green-400" }, ]; export function IntegrationSection() { return (
{/* Header */}
Ecosystem

Seamless Integrations

Connect with your favorite tools through our RESTful API and webhooks.

{/* Integration Grid */}
{integrations.map((item) => (
{item.icon ? ( ) : ( {item.name} )}
{item.name}
))}
); }