import Link from "next/link"; import { forwardRef } from "react"; const BaseLink = forwardRef((props: any, ref) => { const { href, children, ...rest } = props; return ( {children} ); }); BaseLink.displayName = "BaseLink"; export default BaseLink;