diff --git a/components/Head/CommonHead.tsx b/components/Head/CommonHead.tsx new file mode 100644 index 0000000..42575ce --- /dev/null +++ b/components/Head/CommonHead.tsx @@ -0,0 +1,66 @@ +// eslint-disable-next-line @next/next/no-document-import-in-page +import { Head } from 'next/document' + +import { projectConfig } from '@/utils/config' + +const CommonHead = (): JSX.Element => { + return ( + + {/* Link Tags */} + + + + + + + {/* Default meta tags */} + + + + + + + + + + + + + {/* Open graph MT */} + + + + + + + + + + {/* Twitter card Metadata */} + + + + + + ) +} + +export default CommonHead