import React from 'react'; import { Box, Typography, Stack, Button, useTheme, TextField } from '@mui/material'; const BasicInformation = ({ currentStepIndex = 0, onNext, onBack }) => { const theme = useTheme(); return ( Basic Information Enter your basic information to proceed to registration of your own restaurant on this platform {/* Inputs (Restaurant Name, Type, Address, City, Postal Code) */} {[ { label: 'Restaurant Name', placeholder: 'Al-Baik Foods' }, { label: 'Restaurant Type', placeholder: 'Fast Food' }, { label: 'Address', placeholder: 'Ward # 13' }, { label: 'City', placeholder: 'Jordan' }, { label: 'Postal Code', placeholder: '31200' }, ].map((field, index) => ( {field.label} ))} {/* زر Back تحت زر Next */} ); }; export default BasicInformation;