import Link from 'next/link' import { cn } from '@/lib/utils' interface InternalLinkProps { href: string children: React.ReactNode className?: string variant?: 'default' | 'muted' | 'underline' } export function InternalLink({ href, children, className, variant = 'default', }: InternalLinkProps) { const variants = { default: 'text-primary hover:text-primary/80', muted: 'text-muted-foreground hover:text-foreground', underline: 'text-foreground underline underline-offset-4 hover:text-primary', } return ( {children} ) } // Usage example: // Wedding Photography // View all venues