portal-www
Version:
Nova Portal Website. Based on Next starter by Ueno
42 lines (39 loc) • 765 B
text/typescript
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
}
}
}
}
`;