import React from 'react'; import { Box, Typography, Stack, Button, useTheme, TextField } from '@mui/material'; const OperationalCapacity = ({ currentStepIndex = 0, onNext, onBack }) => { const theme = useTheme(); return ( Operational Capacity Enter your basic information to proceed to registration of your own restaurant on this platform {/* Maximum Orders Per Day Input */} Maximum Orders Per Day {/* Number of Cheff Input */} Number of Cheff {/* Number of Waiters Input */} Number of Waiters {/* Number of Kitchen Assistant Input */} Number of Kitchen Assistant {/* Buttons */} {/* زر Back تحت زر Next */} ); }; export default OperationalCapacity;