import Head from 'next/head' export function SEO(props: { title: string description: string url?: string children?: any[] }) { const { title, description, url, children } = props return ( {title} | Mantic Markets {url && ( )} {children} ) }