"use client" import { Icon } from "@iconify/react" import { LandingReveal } from "@/components/landing/landing-reveal" import { ProductSectionHeading } from "@/components/landing/product/product-section-heading" import type { ProductInteropSection as ProductInteropSectionData } from "@/components/landing/product/product-data" import { cn } from "@/lib/utils" export function ProductInteropSection({ section, accent, }: { section: ProductInteropSectionData accent: string }) { return (
{section.providers.map((provider, index) => (

{provider.name}

{provider.tagline}

Personnel

{provider.personal}

Entreprise

{provider.enterprise}

))}
{section.features.length > 0 ? (
    {section.features.map((feature) => (
  • {feature.title}

    {feature.description}

  • ))}
) : null}
) }