import gql from 'graphql-tag';

export const OPPORTUNITIES = gql`
  query OpportunityLinks($locale: String) {
    linkList(id: "p401bQwFoiQeHegbIMfd7", locale: $locale) {
      linksCollection {
        items {
          backgroundColor {
            color
            coloredShadow
          }
          icon
          slug
          title
          url
          cta
        }
      }
      title
    }
  }
`;

export const SHORTCUTLINKS = gql`
  query ShortCutLinks($locale: String) {
    linkList(id: "3I48PDJBGFs6zMsNsx52w4", locale: $locale) {
      linksCollection {
        items {
          backgroundColor {
            color
            coloredShadow
          }
          icon
          slug
          title
          url
        }
      }
    }
  }
`;
