import { useState } from 'react'; import './HomeHelpPage.css'; import { Grid, Typography, Card, CardContent, MobileStepper, Button } from '@material-ui/core'; import { Link } from 'react-router-dom'; import { ReactComponent as BackButtonIcon } from '../../assets/icons/back-icon.svg'; import KeyboardArrowRight from '@material-ui/icons/KeyboardArrowRight'; import KeyboardArrowLeft from '@material-ui/icons/KeyboardArrowLeft'; const HomeHelpPage = () => { const queries = [ { id: 1, question: 'GlobalNet 2.0 User Manual ' }, { id: 2, question: 'GlobalNet 2.0 Training Deck' }, { id: 3, question: 'GlobalNet 2.0 FAQ' } ]; const steps = [ { label: 'Video 1', vidPath: 'https://www.youtube.com/embed/-J6Glzb-KaI' }, { label: 'Video 2', vidPath: 'https://www.youtube.com/embed/53oph2HWrBY' }, { label: 'Video 3', vidPath: 'https://www.youtube.com/embed/4QONz2l0L8E' } ]; const [activeStep, setActiveStep] = useState(0); const maxSteps = steps.length; const handleNext = () => { setActiveStep(prevActiveStep => prevActiveStep + 1); }; const handleBack = () => { setActiveStep(prevActiveStep => prevActiveStep - 1); }; return ( Back Help Section Documentation {queries.map((query, index) => ( {query.question} ))} Videos Next } backButton={ } /> Support Information For questions regarding any of the information provided in this application, please complete the 'Ask DCI a Question' form found in the Support section of InfoNet. For any requests/incidents please contact your Account Executive. For any other user access-based issues, please contact Global Partner Operation Support Team. ); }; export default HomeHelpPage;