Skip to content

Commit b6ce7f5

Browse files
committed
feat: Replace lucide-react icons with react-icons for GitHub and Twitter links; add react-icons dependency
1 parent 0b24529 commit b6ce7f5

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

packages/nextjs/app/builders/0xE00E720798803B8B83379720c42f7A9bE1cCd281/page.tsx

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import Image from "next/image";
2-
import { ExternalLink, Github, Twitter } from "lucide-react";
2+
import { ExternalLink } from "lucide-react";
33
import type { NextPage } from "next";
4+
import { FaGithub, FaTwitter } from "react-icons/fa";
45
import { Address } from "~~/components/scaffold-eth";
56

67
const name = "Joe Leo";
@@ -15,13 +16,13 @@ const socialLinks = [
1516
{
1617
platform: "github",
1718
url: "https://github.com/web-ghost-dotcom",
18-
icon: <Github size={20} />,
19+
icon: <FaGithub size={20} />,
1920
color: "hover:text-purple-500",
2021
},
2122
{
2223
platform: "BuidlGuidl",
2324
url: "https://app.buidlguidl.com/builders/0xE00E720798803B8B83379720c42f7A9bE1cCd281",
24-
icon: <Twitter size={20} />,
25+
icon: <FaTwitter size={20} />,
2526
color: "hover:text-blue-400",
2627
},
2728
];

packages/nextjs/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
"react": "^19.0.0",
3434
"react-dom": "^19.0.0",
3535
"react-hot-toast": "^2.4.0",
36+
"react-icons": "^5.5.0",
3637
"usehooks-ts": "^3.1.0",
3738
"viem": "2.23.0",
3839
"wagmi": "2.14.11",

yarn.lock

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4033,6 +4033,7 @@ __metadata:
40334033
react: ^19.0.0
40344034
react-dom: ^19.0.0
40354035
react-hot-toast: ^2.4.0
4036+
react-icons: ^5.5.0
40364037
tailwindcss: ^4.1.3
40374038
type-fest: ^4.26.1
40384039
typescript: ^5.8.2
@@ -15979,6 +15980,15 @@ __metadata:
1597915980
languageName: node
1598015981
linkType: hard
1598115982

15983+
"react-icons@npm:^5.5.0":
15984+
version: 5.5.0
15985+
resolution: "react-icons@npm:5.5.0"
15986+
peerDependencies:
15987+
react: "*"
15988+
checksum: cbd74f4b7982e6e18d59798a6b578268c8eb0909d78d87bcf9b25f99b3e544fd189a76551cb5e770d17f154a60b668551aee108aaf8471309b23f7af3b2c5b07
15989+
languageName: node
15990+
linkType: hard
15991+
1598215992
"react-is@npm:^16.13.1":
1598315993
version: 16.13.1
1598415994
resolution: "react-is@npm:16.13.1"

0 commit comments

Comments
 (0)