commerce/constants/sustainability.tsx
2023-07-27 17:20:59 +01:00

40 lines
699 B
TypeScript

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);