diff --git a/src/pages/who-we-are/index.tsx b/src/pages/who-we-are/index.tsx index 60006aee90b..57573b17319 100644 --- a/src/pages/who-we-are/index.tsx +++ b/src/pages/who-we-are/index.tsx @@ -13,6 +13,7 @@ import { DerivNumbers, OurOffices, } from './_lazy-load' +import { TGatsbyHead } from 'features/types' import device from 'themes/device' import { SEO } from 'components/containers' import Layout from 'components/layout/layout' @@ -51,10 +52,6 @@ const AboutUs = ({ data }: TWhoWeAre) => { } = data?.strapiWhoWeArePage || {} return ( - @@ -227,3 +224,11 @@ export const query = graphql` ` export default WithIntl()(AboutUs) + +export const Head = ({ pageContext }: TGatsbyHead) => ( + +)