CMS more content

This commit is contained in:
Fede Álvarez
2022-05-25 20:14:33 +02:00
parent 96f3c2651d
commit a1ebe00be2
5 changed files with 287 additions and 248 deletions
+56
View File
@@ -0,0 +1,56 @@
const PartnersHero = {
query: `
{
partnersPage {
heroHeading
heroParagraph01
heroParagraph02
}
}`
}
const PartnersOportunities = {
query: `
{
partnersPage {
oportunitiesDesc01
oportunitiesDesc02
oportunitiesDesc03
oportunitiesDesc04
oportunitiesDesc05
oportunitiesHeading01
oportunitiesHeading02
oportunitiesHeading03
oportunitiesHeading04
oportunitiesHeading05
}
}`
}
const PartnersContact = {
query: `
{
partnersPage {
contactCompanyLabel
contactCompanyPlaceholder
contactDescription
contactEmailLabel
contactEmailPlaceholder
contactFormHeading
contactFormWarning
contactHeading
contactInquiryLabel
contactInquiryPlaceholder
contactLegalLabel
contactLegalPlaceholder
contactMsgLabel
contactMsgPlaceholder
contactNameLabel
contactNamePlaceholder
contactRoleLabel
contactRolePlaceholder
contactButtonLabel
}
}`
}
export { PartnersContact, PartnersHero, PartnersOportunities }