import { NextSeo } from 'next-seo'; import Head from 'next/head'; import { AppConfig } from '../utils/AppConfig'; type IMetaProps = { title: string; description: string; canonical?: string; }; const Meta = (props: IMetaProps) => { return ( <> ); }; export { Meta };