import Head from 'next/head'; interface CustomHeadProps { title: string; } const CustomHead = ({ title }: CustomHeadProps) => { return ( {title} ); }; export default CustomHead; CustomHead.defaultProps = { title: 'Ahmed Galadima | Portfolio', };