import clsx from "clsx" import NextLink from "next/link" import type { LinkProps as NextLinkProps } from "next/link" export type LinkProps = { href?: string children?: React.ReactNode className?: string } & Partial & React.AllHTMLAttributes const Link = ({ href, children, className, ...rest }: LinkProps) => { return ( {children} ) } export default Link