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