import React, { forwardRef, Ref } from 'react' import Link, { LinkProps } from 'next/link' import { Button, ButtonProps } from '@mui/material' type LinkRef = HTMLButtonElement type NextLinkProps = Omit & Pick const NextLink = ({ href, as, prefetch, locale, ...props }: LinkProps, ref: Ref) => (