import Head from 'next/head' import { FC } from 'react' export type SeoProps = { title?: string description?: string image?: string } const SITE_NAME = process.env.SITE_NAME || 'EntGamers' const Seo: FC = ({ title, description, image }) => { return ( {!!title && ( <> {`${title} - ${SITE_NAME}`} )} {!!description && ( <> )} {!!image && ( <> )} ) } export default Seo