Changeset ba52069 for src/app/professor/profile
- Timestamp:
- 02/13/26 19:32:02 (7 months ago)
- Branches:
- master
- Children:
- d7deae5
- Parents:
- 50f2fb4
- File:
-
- 1 edited
-
src/app/professor/profile/page.tsx (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/app/professor/profile/page.tsx
r50f2fb4 rba52069 98 98 const { t } = useTranslation(); 99 99 return ( 100 <div className="flex justify-between items-center py-3 border-b border- gray-100last:border-b-0">101 <div className="flex items-center gap-2 text- gray-600font-medium">100 <div className="flex justify-between items-center py-3 border-b border-border last:border-b-0"> 101 <div className="flex items-center gap-2 text-muted-foreground font-medium"> 102 102 {icon && <FontAwesomeIcon icon={icon} className="w-4 h-4" />} 103 103 <span>{t(label)}:</span> 104 104 </div> 105 <div className="text- gray-900font-semibold text-right max-w-xs break-words">105 <div className="text-card-foreground font-semibold text-right max-w-xs break-words"> 106 106 {value || t('n_a')} 107 107 </div> … … 119 119 const { t } = useTranslation(); 120 120 return ( 121 <div className="bg- white rounded-xl shadow-sm border border-gray-100overflow-hidden">121 <div className="bg-card rounded-xl shadow-sm border border-border overflow-hidden"> 122 122 <div className="bg-primary text-white px-6 py-4"> 123 123 <div className="flex items-center gap-3"> … … 185 185 return ( 186 186 <div className="min-h-screen pb-8"> 187 <div className="bg- white rounded-xl shadow-sm border border-gray-100p-6">{t('loading')}</div>187 <div className="bg-card rounded-xl shadow-sm border border-border p-6">{t('loading')}</div> 188 188 </div> 189 189 ); … … 208 208 <div className="flex items-center gap-6"> 209 209 <div className="relative"> 210 <div className="w-20 h-20 bg-white bg-opacity-20 rounded-full flex items-center justify-center border-2 border-white border-opacity-30">211 <FontAwesomeIcon icon={faUser} className="text-3xl text- primary" />210 <div className="w-20 h-20 bg-white rounded-full flex items-center justify-center border-2 border-white shadow-lg"> 211 <FontAwesomeIcon icon={faUser} className="text-3xl text-[#0272D1]" /> 212 212 </div> 213 213 <div className="absolute -bottom-1 -right-1 w-6 h-6 bg-green-500 rounded-full border-2 border-white"></div>
Note:
See TracChangeset
for help on using the changeset viewer.
