"use client" import { motion } from "framer-motion" import { Code2, Database, MessageSquare, Zap } from "lucide-react" export function IntegrationsSection() { const integrations = [ { icon: Code2, title: "API Integration", description: "Connect with your favorite tools to streamline workflows", }, { icon: Database, title: "Data Sync", description: "Seamless data synchronization across platforms", }, { icon: Zap, title: "Automation", description: "Automate repetitive tasks with intelligent workflows", }, { icon: MessageSquare, title: "Communication", description: "Real-time notifications and updates", }, ] return (
{/* Header */}
INTEGRATIONS

Seamless{" "} Integrations

Connect with your favorite tools to streamline workflows

{/* Integration Grid */}
{integrations.map((integration, index) => { const Icon = integration.icon return (

{integration.title}

{integration.description}

) })}
) }