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