diff --git a/src/components/ui/link-button.tsx b/src/components/ui/link-button.tsx index a2f7914..9e181cf 100644 --- a/src/components/ui/link-button.tsx +++ b/src/components/ui/link-button.tsx @@ -6,8 +6,10 @@ import Link, { type LinkProps } from "next/link"; import { useMotionAnimate as MotionAnimate } from "@glitchtech-dev/react-motion"; type NavLinkProps = LinkProps & HTMLAttributes; + interface Props extends NavLinkProps { name?: string; + target?: string; } const LinkButton = (props: Props) => {