diff --git a/src/components/AcademicSection.tsx b/src/components/AcademicSection.tsx
index 110f91a..bb29fc6 100644
--- a/src/components/AcademicSection.tsx
+++ b/src/components/AcademicSection.tsx
@@ -2,14 +2,12 @@ import { Trophy, Award, Star } from "lucide-react";
interface AcademicSectionProps {
isDarkMode: boolean;
- scrollToSection: (sectionId: string) => void;
textClasses: string;
cardClasses: string;
}
const AcademicSection = ({
isDarkMode,
- scrollToSection,
textClasses,
cardClasses,
}: AcademicSectionProps) => {
diff --git a/src/components/AthleticsSection.tsx b/src/components/AthleticsSection.tsx
index a3a5831..285ff10 100644
--- a/src/components/AthleticsSection.tsx
+++ b/src/components/AthleticsSection.tsx
@@ -1,15 +1,11 @@
interface AthleticsSectionProps {
isDarkMode: boolean;
- scrollToSection: (sectionId: string) => void;
textClasses: string;
- cardClasses: string;
}
const AthleticsSection = ({
isDarkMode,
- scrollToSection,
textClasses,
- cardClasses,
}: AthleticsSectionProps) => {
return (
diff --git a/src/components/EntrepreneurshipSection.tsx b/src/components/EntrepreneurshipSection.tsx
index 8993638..e5e6e33 100644
--- a/src/components/EntrepreneurshipSection.tsx
+++ b/src/components/EntrepreneurshipSection.tsx
@@ -2,14 +2,12 @@ import { Rocket, Zap } from "lucide-react";
interface EntrepreneurshipSectionProps {
isDarkMode: boolean;
- scrollToSection: (sectionId: string) => void;
textClasses: string;
cardClasses: string;
}
const EntrepreneurshipSection = ({
isDarkMode,
- scrollToSection,
textClasses,
cardClasses,
}: EntrepreneurshipSectionProps) => {
diff --git a/src/components/Footer.tsx b/src/components/Footer.tsx
index a6c3b93..267477d 100644
--- a/src/components/Footer.tsx
+++ b/src/components/Footer.tsx
@@ -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 (