export const gots = 'Global Organic Textile Standard'; const oeko = 'OEKO-TEX®' export const oekoStandard = `${oeko} Standard 100`; export const oekoEco = `${oeko} Eco Passport`; export const peta = "PETA Approved Vegan"; export const fairWear = 'Fair Wear'; export const credentials = { gots: { title: gots, excerpt: '', link: '', }, oekoStandard: { title: oekoStandard, excerpt: '', link: '', }, oekoEco: { title: oekoEco, excerpt: '', link: '', }, peta: { title: peta, excerpt: '', link: '', }, fairWear: { title: fairWear, excerpt: '', link: '', }, }; export const credentialsKeys = Object.keys(credentials);