Ignore:
Timestamp:
10/21/25 17:28:54 (11 months ago)
Author:
stefansaveski <stefansaveski19@…>
Branches:
master
Children:
b67f274
Parents:
2d635ae
Message:

refactor: Remove unused imports and optimize component code across multiple files

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/app/students/profile/page.tsx

    r2d635ae r82c9c53  
    1919import studentData from '@/data/student-profile.json';
    2020
     21import { IconDefinition } from '@fortawesome/fontawesome-svg-core';
     22
    2123interface InfoRowProps {
    2224  label: string;
    2325  value: string | number;
    24   icon?: any;
     26  icon?: IconDefinition;
    2527}
    2628
     
    3941interface SectionProps {
    4042  title: string;
    41   icon: any;
     43  icon: IconDefinition;
    4244  children: React.ReactNode;
    4345}
Note: See TracChangeset for help on using the changeset viewer.