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,18 +1,11 @@
import { Zap, Users, Rocket } from "lucide-react";
interface AboutSectionProps {
isDarkMode: boolean;
scrollToSection: (sectionId: string) => void;
textClasses: string;
cardClasses: string;
}
const AboutSection = ({
isDarkMode,
scrollToSection,
textClasses,
cardClasses,
}: AboutSectionProps) => {
const AboutSection = ({ textClasses, cardClasses }: AboutSectionProps) => {
return (
<section id="about" className="relative py-20">
<div className="max-w-6xl px-6 mx-auto">