import Shape from '@/components/Shape'; export default function Features({ list }) { return (
{list.map((feature, i) => (

{feature.title}

{feature.description}

))}
); }