import NextHead from 'next/head' interface HeadProps { title?: string image?: string description?: string url?: string } export const Head: React.FC = (props) => { const { title = 'Théo LUDWIG', image = 'https://theoludwig.fr/images/icon-96x96.png', description = 'Théo LUDWIG - Developer Full Stack • Passionate about High-Tech', url = 'https://theoludwig.fr/' } = props return ( {title} {/* Meta Tag */} {/* Open Graph Metadata */} {/* Twitter card Metadata */} ) }