'use client'; import Link from 'next/link'; import { Button } from './Button'; interface LinkProps { path: string; text: string; } export default function CustomLink({ path, text }: LinkProps) { return ( ); }