import React from 'react'; import { Box, Typography, Stack, Button, useTheme, TextField, Radio, RadioGroup, FormControlLabel, } from '@mui/material'; const CloudKitchenProject = ({ currentStepIndex = 0, onNext, onBack }) => { const theme = useTheme(); return ( Cloud Kitchen Project Enter your basic information to proceed to registration of your own restaurant on this platform {[ { label: 'Restaurant Name', placeholder: 'Al-Baik Foods' }, { label: 'Cuisine Type', placeholder: 'Italian, Chinese, etc.' }, ].map((field, index) => ( {field.label} ))} Existing Brand } label="Yes" /> } label="No" /> {/* Further Brand Details Input */} Further Brand Details {[ { label: 'Age Group', placeholder: '15 - 75' }, { label: 'Location', placeholder: 'Street 123, Jordan' }, ].map((field, index) => ( {field.label} ))} Menu Status } label="Yes" /> } label="No" /> {/* Further Brand Details Input */} Need Help {/* زر Back تحت زر Next */} ); }; export default CloudKitchenProject;