import React from 'react' import { Box, Typography, Button, IconButton } from '@mui/material' import CloseIcon from '@mui/icons-material/Close'; import './ExploreCoursesDetails.css' import { Access } from '@/utils/constant'; interface CategoryBenefitsProps { onClose: () => void; // Callback to close the modal } const ExploreCourseCategoryBenefits: React.FC = ({onClose}) => { return ( {/* Header */} Category Benefits {/* Content */} Career Building Access to Career Building Courses Personal Finance Access to 10+ courses in Personal Finance Offline Mode Learn in offline mode Certificate Certificate on completion Chatbot Access Unlimited AI-powered chatbot access *Only available in mobile app. Just at ₹399/month (cancel anytime) {/* Footer */} ) } export default ExploreCourseCategoryBenefits