import clsx from 'clsx'; import Link from 'next/link'; /** * A component meant to be used with LandingFooter / LandingFooterColumn. * It shows a title and a column of links or other content. */ export const LandingFooterLink = ({ href = '#', children, variant = 'primary', className, }: { href?: string; children: string | React.ReactNode; variant?: 'primary' | 'secondary'; className?: string; }) => { return ( {children} ); };