'use client' import Link from 'next/link' import PropTypes from 'prop-types' import React from 'react' interface CustomLinkProps { children: React.ReactNode href?: string } export const CustomLink: React.FC = ({ children, href = '/' }) => { return ( {children} ) } CustomLink.propTypes = { children: PropTypes.any, href: PropTypes.string }