import type { ReactNode } from "react" import { cn } from "@/lib/utils" import { LandingReveal } from "@/components/landing/landing-reveal" export function ProductSectionHeading({ eyebrow, title, description, accent, }: { eyebrow: string title: ReactNode description?: string accent?: string }) { return ( {eyebrow}

{title}

{description ? (

{description}

) : null}
) }