"use client" import { Icon } from "@iconify/react" import { LandingReveal } from "@/components/landing/landing-reveal" import type { ProductPageData } from "@/components/landing/product/product-data" export function ProductHighlights({ section, accent, }: { section: ProductPageData["highlightsSection"] accent: string }) { return (
{section.eyebrow}

{section.title}

{section.description}

{section.highlights.map((stat, index) => (
{stat.label}
{stat.value}
))}
) }