import React from 'react'; import { Box, Typography, Stack, Button, useTheme, TextField } from '@mui/material'; const CloudKitchenHosting = ({ currentStepIndex = 0, onNext, onBack }) => { const theme = useTheme(); return ( Cloud Kitchen Hosting 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 Location', placeholder: 'Street 123, Jordan' }, { label: 'Availabel Space', placeholder: '300 sq. feet' }, { label: 'Number of Employees', placeholder: '200' }, ].map((field, index) => ( {field.label} ))} {/* زر Back تحت زر Next */} ); }; export default CloudKitchenHosting;