'use client'; import { forwardRef } from 'react'; import { Link } from '@/src/i18n/routing'; type Props = React.ComponentPropsWithoutRef; const ClientLink = forwardRef(({ href, ...props }, ref) => ( )); ClientLink.displayName = 'ClientLink'; export default ClientLink;