// components/ProfileSection.jsx "use client"; import ImageContainer from './ImageContainer'; import './styles/FeatureGrid.css'; const ProfileSection = ({ features }) => { return (
{features.map((feature, index) => (

{feature.title}

{feature.description}

))}
); }; export default ProfileSection;