import { FC } from 'react' import NextHead from 'next/head' type Props = { ogImage?: string title?: string description?: string } /** * Renders the section of the HTML page, including meta tags, title, and favicon. * @param ogImage - The URL of the Open Graph image to be displayed in social media shares. * @param title - The title of the page. * @param description - The description of the page. */ export const Head: FC = ({ ogImage = '/public/ogTheSphere.png', title = 'pepecoin | Paint Gallery', description = '.. is...', }) => { return ( {/* CONFIGURABLE: You'll probably want to configure this all to have custom meta tags and title to fit your application */} {/* Title */} {title} {/* Meta tags */} {/* Twitter */} {/* Open Graph */} ) }