import Head from "next/head"; import React from "react"; interface CustomHeadProps { title: string; } /** * A custom version of "next/head" that sets the title, description, favicon and * some other boilerplate
tags. * * This assumes the existence of `public/images/favicon.png`. */ export const CustomHead: React.FC