import { Users } from 'lucide-react'; import { useTheme } from '../contexts/ThemeContext'; interface LeadershipSectionProps { isOutOfCollege?: boolean; } const LeadershipSection: React.FC = ({ isOutOfCollege = false }) => { const { theme } = useTheme(); return (

Leadership & Service

Leadership Roles

NJHS Inductee

National Junior Honor Society Inductee • 2024

Recognized for academic excellence, leadership, and community service in middle school

"Fabulous Falcon" Award

Forestwood Middle School • 2024

Awarded for outstanding contributions to school community and leadership in student activities

Peer Learning Mentor

Forestwood Middle School • 2023-2024

Mentored 50+ students in computer science fundamentals, fostering a collaborative learning environment

{isOutOfCollege && (

Community Service

Code for Good Volunteer

2020-Present • 500+ hours

Built digital solutions for 10+ nonprofits, impacting 10,000+ lives

)}
); }; export default LeadershipSection;