refactor: remove unused props from section components for cleaner code

This commit is contained in:
2025-06-15 15:04:37 -05:00
parent fec7fb62de
commit 5f900bbceb
9 changed files with 6 additions and 54 deletions

View File

@@ -2,14 +2,12 @@ import { Award, Star, Users } from "lucide-react";
interface LeadershipSectionProps {
isDarkMode: boolean;
scrollToSection: (sectionId: string) => void;
textClasses: string;
cardClasses: string;
}
const LeadershipSection = ({
isDarkMode,
scrollToSection,
textClasses,
cardClasses,
}: LeadershipSectionProps) => {