import useTranslation from "next-translate/useTranslation"; import React from "react"; const GlobalMetaTags = () => { let { t } = useTranslation(); return ( <> {console.log(t("common:service-name"))} {/* Language by default is EN, if multilingual site this will need updated */} {/* If they have a Twitter Handle, include the meta details below */} ); }; export default GlobalMetaTags;