import type { PricingRow } from '@/lib/marketing/comparison-types'; interface PricingComparisonProps { rows: PricingRow[]; footnote?: string; competitorName: string; } export function PricingComparison({ rows, footnote, competitorName }: PricingComparisonProps) { return (
{rows.map((row) => (

{row.label}

OpenFrame

{row.openframe}

{competitorName}

{row.competitor}

))}
{footnote ?

{footnote}

: null}
); }