import NextHead from 'next/head' import { string } from 'prop-types' const defaultDescription = '' const defaultOGURL = '' const defaultOGImage = '' const Head = (props) => ( {props.title || ''} ) Head.propTypes = { title: string, description: string, url: string, ogImage: string } export default Head