import { BriefcaseIcon, ShoppingBagIcon } from '@heroicons/react/24/outline'; const features = [ { name: 'Products', description: 'Eco friendly products that are sustainable and recyclable.', icon: ShoppingBagIcon }, { name: 'Consulting services', description: 'Talk to us if you would like to know more about sustainable living or are looking to setup a sustainable business.', icon: BriefcaseIcon } ]; export default function Services() { return (

Stay on top of customer support

{features.map((feature) => (
{feature.name}
{feature.description}
))}
); }