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

@@ -1,16 +1,9 @@
interface FooterProps {
isDarkMode: boolean;
scrollToSection: (sectionId: string) => void;
textClasses: string;
cardClasses: string;
}
const Footer = ({
isDarkMode,
scrollToSection,
textClasses,
cardClasses,
}: FooterProps) => {
const Footer = ({ isDarkMode, textClasses }: FooterProps) => {
return (
<footer
className={`py-12 ${