import React from 'react'; import { Box, Typography, Stack, Button, useTheme, TextField } from '@mui/material'; const CloudKitchenHosting = ({ currentStepIndex = 0, onNext, onBack }) => { const theme = useTheme(); return ( Rstaurant Operations Enter your basic information to proceed to registration of your own restaurant on this platform {/* Inputs (Restaurant Name, Type, Address, City, Postal Code) */} {[ { label: 'Monthly Sales Value', placeholder: '$400' }, { label: 'Operating Size (Customers/Day)', placeholder: '20' }, { label: 'Peak Hours', placeholder:'Breakfast' }, { label: 'Preferred Cuisine to Host', placeholder: 'Fast Food' }, ].map((field, index) => ( {field.label} ))} {/* زر Back تحت زر Next */} ); }; export default CloudKitchenHosting;