This repository was archived by the owner on Oct 2, 2024. It is now read-only.
File tree 6 files changed +132
-27
lines changed
6 files changed +132
-27
lines changed Original file line number Diff line number Diff line change 19
19
},
20
20
"dependencies" : {
21
21
"@auth/prisma-adapter" : " ^2.1.0" ,
22
+ "@fortawesome/fontawesome-svg-core" : " ^6.5.2" ,
23
+ "@fortawesome/free-brands-svg-icons" : " ^6.5.2" ,
24
+ "@fortawesome/free-regular-svg-icons" : " ^6.5.2" ,
25
+ "@fortawesome/free-solid-svg-icons" : " ^6.5.2" ,
26
+ "@fortawesome/react-fontawesome" : " ^0.2.2" ,
22
27
"@headlessui/react" : " ^2.0.4" ,
23
28
"@heroicons/react" : " ^2.1.3" ,
24
29
"@ngneat/falso" : " ^7.2.0" ,
28
33
"next-auth" : " ^4.24.7" ,
29
34
"react" : " ^18" ,
30
35
"react-dom" : " ^18" ,
31
- "react-social-icons" : " ^6.16.0" ,
32
36
"zod" : " ^3.23.8"
33
37
},
34
38
"devDependencies" : {
Original file line number Diff line number Diff line change @@ -3,6 +3,10 @@ import { Inter } from "next/font/google";
3
3
import "./globals.css" ;
4
4
import prisma from "@/models/db" ;
5
5
6
+ import "@fortawesome/fontawesome-svg-core/styles.css" ;
7
+ import { config } from "@fortawesome/fontawesome-svg-core" ;
8
+ config . autoAddCss = false ;
9
+
6
10
import { classNames } from "@/utils/classNames" ;
7
11
import { authOptions } from "@/app/api/auth/[...nextauth]/route" ;
8
12
import Header from "@/components/Header" ;
Original file line number Diff line number Diff line change 1
1
import { ChevronRightIcon } from "@heroicons/react/20/solid" ;
2
2
import Image from "next/image" ;
3
3
import Link from "next/link" ;
4
- import { SocialIcon } from "react-social-icons " ;
4
+ import { FontAwesomeIcon } from "@fortawesome/ react-fontawesome " ;
5
5
6
6
import Badge from "@/components/Badge" ;
7
+ import socialIcon from "@/config/socialIcon" ;
7
8
8
9
export default function Item ( { data } ) {
9
10
return (
@@ -20,9 +21,10 @@ export default function Item({ data }) {
20
21
/>
21
22
) }
22
23
{ data . icon && (
23
- < SocialIcon
24
- network = { data . icon }
25
- className = "h-12 w-12 flex-none rounded-full bg-gray-50"
24
+ < FontAwesomeIcon
25
+ icon = { socialIcon ( data . icon ) }
26
+ className = "h-12 w-12 flex-none rounded-full bg-gray-50 p-2"
27
+ style = { { height : 50 , width : 50 } }
26
28
/>
27
29
) }
28
30
< div className = "min-w-0 flex-auto" >
@@ -43,10 +45,10 @@ export default function Item({ data }) {
43
45
{ data . socials &&
44
46
data . socials . map ( ( badge , key ) => (
45
47
< dd key = { key } >
46
- < SocialIcon
47
- network = { badge . icon }
48
+ < FontAwesomeIcon
49
+ icon = { socialIcon ( badge . icon ) }
48
50
label = { badge . icon }
49
- className = "h-6 w-6 rounded-full bg-gray-50 ring-2 ring-white"
51
+ className = "h-6 w-6 rounded-full bg-gray-50 ring-2 ring-white p-2 "
50
52
style = { { height : 25 , width : 25 } }
51
53
/>
52
54
</ dd >
Original file line number Diff line number Diff line change 16
16
"twitch" : {
17
17
"value" : " twitch" ,
18
18
"display" : " Twitch"
19
+ },
20
+ "devto" : {
21
+ "value" : " devto" ,
22
+ "display" : " Dev.to"
23
+ },
24
+ "hashnode" : {
25
+ "value" : " hashnode" ,
26
+ "display" : " Hashnode"
19
27
}
20
28
},
21
29
"reach" : {
Original file line number Diff line number Diff line change
1
+ import {
2
+ faDev ,
3
+ faHashnode ,
4
+ faTwitch ,
5
+ faTwitter ,
6
+ faYoutube ,
7
+ } from "@fortawesome/free-brands-svg-icons" ;
8
+ import { faThumbsUp } from "@fortawesome/free-regular-svg-icons" ;
9
+
10
+ export default function socialIcon ( name ) {
11
+ let icon = faThumbsUp ;
12
+ switch ( name ) {
13
+ case "twitter" :
14
+ icon = faTwitter ;
15
+ break ;
16
+ case "youtube" :
17
+ icon = faYoutube ;
18
+ break ;
19
+ case "twitch" :
20
+ icon = faTwitch ;
21
+ break ;
22
+ case "hashnode" :
23
+ icon = faHashnode ;
24
+ break ;
25
+ case "devto" :
26
+ icon = faDev ;
27
+ break ;
28
+ }
29
+ return icon ;
30
+ }
You can’t perform that action at this time.
0 commit comments