Files
OpenFrame/components/marketing/marketing-compare-links.tsx
T
yusufipk 51257e004f Add SEO comparison landing pages and footer compare links.
Introduces dynamic marketing comparison routes, competitor data, and Compare sections on the homepage and marketing footer.
2026-06-14 16:36:26 +02:00

24 lines
658 B
TypeScript

import Link from 'next/link';
import { compareFooterLinks } from '@/lib/marketing/comparison-pages';
export function MarketingCompareLinks() {
return (
<div className="flex flex-col gap-2">
<span className="font-mono text-[10px] uppercase tracking-wider text-muted-foreground">
Compare
</span>
<nav className="flex flex-col gap-1.5">
{compareFooterLinks.map((link) => (
<Link
key={link.href}
href={link.href}
className="text-xs text-muted-foreground hover:text-foreground"
>
{link.label}
</Link>
))}
</nav>
</div>
);
}