import Head from 'next/head'; const TITLE_SUFFIX = 'Iconoir | Free Icons'; export interface SEOProps { title?: string; } export function SEO({ title }: SEOProps) { const pageTitle = title ? `${title} | ${TITLE_SUFFIX}` : TITLE_SUFFIX; return ( {pageTitle} ); }