Index: src/app/students/profile/page.tsx
===================================================================
--- src/app/students/profile/page.tsx	(revision 6b8332fe05a98c02de045986092bb67143456a18)
+++ src/app/students/profile/page.tsx	(revision 82c9c5395fa3ee03a1695f6a09655d574ffbc478)
@@ -19,8 +19,10 @@
 import studentData from '@/data/student-profile.json';
 
+import { IconDefinition } from '@fortawesome/fontawesome-svg-core';
+
 interface InfoRowProps {
   label: string;
   value: string | number;
-  icon?: any;
+  icon?: IconDefinition;
 }
 
@@ -39,5 +41,5 @@
 interface SectionProps {
   title: string;
-  icon: any;
+  icon: IconDefinition;
   children: React.ReactNode;
 }
