Skip to content

Commit 076bcf6

Browse files
committed
issue in module imports, classname and icons
1 parent 50de1d4 commit 076bcf6

1 file changed

Lines changed: 7 additions & 11 deletions

File tree

frontend/src/pages/ProfilePage.tsx

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,11 @@ import {
66
User,
77
Mail,
88
Calendar,
9-
Edit,
9+
Shield,
10+
Edit3,
1011
Save,
1112
X,
12-
Award,
13-
Star,
14-
Zap,
15-
Target,
16-
TrendingUp,
17-
Shield
13+
CheckCircle,
1814
} from 'lucide-react';
1915
import { formatDate } from '../lib/utils';
2016

@@ -153,7 +149,7 @@ const ProfilePage: React.FC = () => {
153149
<div className="flex items-center justify-between">
154150
<div>
155151
<div className="bg-green-100 p-3 rounded-xl mb-3 inline-block">
156-
<TrendingUp className="w-6 h-6 text-green-600" />
152+
<CheckCircle className="w-6 h-6 text-green-600" />
157153
</div>
158154
<p className="text-sm font-medium text-gray-700">Progress Level</p>
159155
<p className="text-2xl font-bold text-gray-900">Rising</p>
@@ -169,15 +165,15 @@ const ProfilePage: React.FC = () => {
169165
<div className="p-6 border-b border-gray-200/50">
170166
<div className="flex items-center justify-between">
171167
<h3 className="text-2xl font-bold text-gray-900 flex items-center">
172-
<Star className="w-6 h-6 mr-2 text-purple-600" />
168+
<CheckCircle className="w-6 h-6 mr-2 text-purple-600" />
173169
Your Profile ✨
174170
</h3>
175171
{!isEditing && (
176172
<button
177173
onClick={() => setIsEditing(true)}
178174
className="inline-flex items-center px-6 py-3 bg-gradient-to-r from-purple-600 to-blue-600 hover:from-purple-700 hover:to-blue-700 text-white font-medium rounded-xl shadow-sm hover:shadow-md transition-all duration-200"
179175
>
180-
<Edit className="w-4 h-4 mr-2" />
176+
<Edit3 className="w-4 h-4 mr-2" />
181177
Edit Profile
182178
</button>
183179
)}
@@ -276,7 +272,7 @@ const ProfilePage: React.FC = () => {
276272
<div className="bg-gradient-to-br from-amber-50 to-orange-50 p-6 rounded-xl border border-amber-100">
277273
<div className="flex items-center mb-3">
278274
<div className="bg-amber-100 p-2 rounded-lg mr-3">
279-
<Award className="w-5 h-5 text-amber-600" />
275+
<CheckCircle className="w-5 h-5 text-amber-600" />
280276
</div>
281277
<h4 className="font-bold text-gray-900">Achievement</h4>
282278
</div>

0 commit comments

Comments
 (0)