// components/StepByStepGuide.jsx "use client"; import { useState, useEffect } from 'react'; import Image from 'next/image'; import './styles/StepByStepGuide.css'; const StepByStepGuide = ({ steps }) => { return (
{steps.map((step, index) => (
{index + 1}

{step.title}

{step.description}

{step.image && (
{step.title}
)}
))}
); }; export default StepByStepGuide;