import Head from 'next/head'
const SEO = ({ title, description, image }:SEOProps):JSX.Element => {
return
{title}
{ description && }
{ description && }
{ image && }
}
export default SEO
interface SEOProps {
title: string
description?: string
image?: string
}