export const HOME_PAGE_QUERY = `
query HomePage {
  page(id: "home", idType: URI) {
    homeSections {
      __typename

      ... on Page_Homesections_Hero {
        heading
        subheading
        ctaText
        ctaLink
        backgroundImage {
          sourceUrl
        }
      }

      ... on Page_Homesections_Solutions {
        title
        items {
          title
          description
        }
      }
    }

    seo {
      title
      metaDesc
      fullHead
    }
  }
}
`;
