import React, { useEffect, useState } from 'react' import { Box, Typography } from '@mui/material' import './ExploreCoursesDetails.css' import { applyStyles } from '@/utils/globalStyles' const ExploreDetailsWhoCanTake: React.FC = () => { applyStyles() const chaptersList = [ 'A beginner’s guide to the stock market, this course can help you learn the basics.', 'Investors with some experience in the stock market who would like to improve their knowledge and skills.', 'Individuals seeking long-term financial growth who want to grow their money over time should consider investing in the stock market.', 'People who want to understand the stock market better.', 'Helpful for students and professionals in finance and economics.', ] useEffect(() => { applyStyles() }, [dispatch]) return ( {/* Text Section */} Who can take up this course? {/* Image Section */} Course Illustration ) } export default ExploreDetailsWhoCanTake function dispatch() { throw new Error('Function not implemented.') }