diff --git a/src/components/LeadershipSection.tsx b/src/components/LeadershipSection.tsx index ca18e42..7a27831 100644 --- a/src/components/LeadershipSection.tsx +++ b/src/components/LeadershipSection.tsx @@ -1,125 +1,161 @@ -import { Users } from 'lucide-react'; -import { useTheme } from '../contexts/ThemeContext'; +import { Users } from "lucide-react"; +import { useTheme } from "../contexts/ThemeContext"; interface LeadershipSectionProps { - isOutOfCollege?: boolean; + isOutOfCollege?: boolean; } -const LeadershipSection: React.FC = ({ isOutOfCollege = false }) => { - const { theme } = useTheme(); - - return ( -
-
- -

- Leadership & Service -

-
-
-
+const LeadershipSection: React.FC = ({ + isOutOfCollege = false, +}) => { + const { theme } = useTheme(); + + return ( +
+
+ +

+ Leadership & Service +

+
+
+
+
+

+ Leadership Roles +

+
-

- 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 -

-
-
+

+ 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 -

-
-
-
- )}
-
- ); + {isOutOfCollege && ( +
+

+ Community Service +

+
+
+

+ Code for Good Volunteer +

+

+ 2020-Present • 500+ hours +

+

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

+
+
+
+ )} +
+
+
+ ); }; -export default LeadershipSection; \ No newline at end of file +export default LeadershipSection;