mirror of
https://github.com/vercel/commerce.git
synced 2025-05-19 16:07:01 +00:00
40 lines
699 B
TypeScript
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);
|