"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 { ProductFeatureGroup } from "@/components/landing/product/product-data" import { cn } from "@/lib/utils" export function ProductFeatureGrid({ groups, accent, }: { groups: ProductFeatureGroup[] accent: string }) { return ( <> {groups.map((group) => (
    {group.features.map((feature, index) => (

    {feature.title}

    {feature.description}

    ))}
))} ) }