// components/StepsSection.jsx "use client"; import ImageContainer from './ImageContainer'; import './styles/StepByStepGuide.css'; const StepsSection = ({ steps, title }) => { return (
{steps.map((step, index) => (
{index + 1}

{step.title}

{step.description}

{step.image && ( )}
))}
); }; export default StepsSection;