import React from 'react'; import { Box, Typography, Stack, Button, useTheme } from '@mui/material'; import ArrowBackIosIcon from '@mui/icons-material/ArrowBackIos'; const steps = [ { title: 'Cloud Kitchen Project', icon: '/images/createProfile/BasicInf.png' }, { title: 'OperationalDetails', icon: '/images/icons/rocket.png' }, { title: 'Required Equipments', icon: '/images/createProfile/equipment.png'}, { title: 'Visual Identity', icon: '/images/createProfile/Vector.png' }, { title: 'Budget & Expansion', icon: '/images/createProfile/Expansion.png' }, { title: 'Additional Notes & Concerns', icon: '/images/createProfile/Group.png' }, { title: 'Submit & Confirmation', icon: '/images/createProfile/Confirmation.png' }, ]; const SideProfile = ({ currentStepIndex = 0, onBack }) => { const theme = useTheme(); return ( {/* العنوان الرئيسي */} Create Your Restaurant Complete this process to register your restaurant on our amazing food platform. {/* الخطوات */} {steps.map((step, index) => ( {/* الخط الرأسي بين الدوائر */} {index !== steps.length - 1 && ( )} {/* محتوى كل خطوة */} {/* الدائرة بالأيقونة */} {/* الدائرة الخلفية - تظهر دائمًا */} {/* الدائرة الأمامية بالأيقونة */} {step.title} {/* العنوان */} {step.title} ))} {/* زر الرجوع */} ); }; export default SideProfile;