Spaces:
Sleeping
Sleeping
File size: 1,817 Bytes
65bffa4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 | import image1 from '../assets/project/project1.png';
import image2 from '../assets/project/project2.png';
import image3 from '../assets/project/project3.png';
import image4 from '../assets/project/project4.png';
export const community = {
community1: {
img: require('../assets/project/community1.png'),
title: 'Ocean Guardians United',
description: 'Partnering with GXS Blue Carbon has opened new doors for our marine conservation efforts',
},
community2: {
img: require('../assets/project/community2.png'),
title: 'Blue Carbon Innovators',
description: 'The ability to monitor our mangrove restoration projects in real-time has transformed our approach',
},
community3: {
img: require('../assets/project/community3.png'),
title: 'Sustainable Futures Collective',
description: 'GXS Blue Carbon’s marketplace has empowered us to fund projects that were previously out of reach',
},
};
export const projects = {
project1: {
id: 1,
title: 'Can Gio',
description: 'Mangroves conservation at critical areas with community participation.',
date: '19 Jun 2026',
img: image1,
},
project2: {
id: 2,
title: 'Varuna',
description: 'Seagrass restoration with cutting-edge and data-driven monitoring.',
date: '19 Jun 2027',
img: image2,
},
project3: {
id: 3,
title: 'Aneira',
description: 'Mangroves restoration in coastal ecosystems with carbon benefits.',
date: '19 Jun 2028',
img: image3,
},
project4: {
id: 4,
title: 'Eulalie',
description: 'Rehabilitation of degraded mangrove ecosystems for coastal protection.',
date: '19 Jun 2027',
img: image4,
},
};
|