import BLOG from '@/blog.config' import Head from 'next/head' const CommonHead = ({ meta }) => { const url = BLOG.path.length ? `${BLOG.link}/${BLOG.path}` : BLOG.link return {meta.title} {BLOG.seo.googleSiteVerification && ( )} {BLOG.seo.keywords && ( )} {meta.type === 'article' && ( <> )} } export default CommonHead