import { cn } from '@/lib/utils'; import Link from 'next/link'; import type { ReactNode } from 'react'; export const InlineLink = ({ href, children, blank = false, className, }: { href: string; children: ReactNode; blank?: boolean; className?: string; }) => { return ( {children} ); };