Skip to content

Commit f4e1b8d

Browse files
committed
dev
1 parent 7da5321 commit f4e1b8d

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

src/components/Profile/Profile.jsx

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ import {
1919
FaReddit,
2020
FaShareAlt,
2121
} from 'react-icons/fa';
22+
import { FaHandshake } from 'react-icons/fa';
2223
import { FaXTwitter, FaLocationDot } from 'react-icons/fa6';
2324
import { SiLeetcode, SiCodeforces, SiHashnode, SiReplit, SiHackerrank } from 'react-icons/si';
2425

@@ -178,15 +179,12 @@ function Card({ data }) {
178179
<a
179180
href={data.portfolio}
180181
className={`flex w-28 items-center gap-2 ${
181-
data.portfolio
182-
? 'text-textSecondary hover:underline'
183-
: 'cursor-not-allowed text-textSecondary brightness-50'
182+
data.portfolio ? 'text-blue-600 hover:underline' : 'cursor-not-allowed text-blue-600 brightness-50'
184183
}`}
185184
target="_blank"
186185
rel="noreferrer"
187186
>
188-
Connect
189-
{/* Connect &#8594; */}
187+
<FaHandshake className="text-lg" />
190188
</a>
191189
</div>
192190
</div>

0 commit comments

Comments
 (0)