import React from 'react'; import { Box, Typography, Stack, Button, useTheme, TextField } from '@mui/material'; const ContactInformation = ({ currentStepIndex = 0, onNext, onBack }) => { const theme = useTheme(); const handleNext = () => { if (onNext) { onNext(); } }; return ( Contact Information Enter your contact information to proceed to registration of your own restaurant on this platform {/* Phone Number Input */} Phone Number {/* Email Input */} Email {/* Next Button */} {/* زر Back تحت زر Next */} ); }; export default ContactInformation;