File tree Expand file tree Collapse file tree 4 files changed +24
-1
lines changed
components/Recommendation Expand file tree Collapse file tree 4 files changed +24
-1
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ export interface Props {
18
18
content : ReactNode ;
19
19
date : string ;
20
20
githubUsername : string ;
21
+ staticProfileImage : string | null ;
21
22
}
22
23
23
24
export default function Recommendation ( {
@@ -26,6 +27,7 @@ export default function Recommendation({
26
27
content,
27
28
date,
28
29
githubUsername,
30
+ staticProfileImage,
29
31
} : Props ) : ReactNode {
30
32
return (
31
33
< div className = { clsx ( "card" , styles . recommendation ) } >
@@ -37,7 +39,9 @@ export default function Recommendation({
37
39
src = {
38
40
githubUsername
39
41
? `https://github.com/${ githubUsername } .png`
40
- : "https://nicholasgoh.github.io/img/blank.png"
42
+ : staticProfileImage
43
+ ? `https://nicholasgoh.github.io/img/recommenders/${ staticProfileImage } .png`
44
+ : "https://nicholasgoh.github.io/img/recommenders/blank.png"
41
45
}
42
46
width = "48"
43
47
height = "48"
Original file line number Diff line number Diff line change @@ -74,6 +74,25 @@ const TWEETS: RecommendationItem[] = [
74
74
showOnHomepage : true ,
75
75
githubUsername : "" ,
76
76
} ,
77
+ {
78
+ url : "https://www.linkedin.com/in/alvinphang/" ,
79
+ name : "Alvin Phang" ,
80
+ date : "Apr 22, 2025" ,
81
+ content : (
82
+ < >
83
+ I had the pleasure of working with Nicholas, and I’m genuinely impressed
84
+ by their growth and contributions. A fast learner with a great attitude,
85
+ Nicholas quickly ramped up on complex topics like LLM microservices and
86
+ took initiative to implement practical solutions that improved team
87
+ efficiency and led to meaningful cost savings. On top of that, Nicholas
88
+ is friendly, collaborative, and always a joy to work with — a great
89
+ asset to any team.
90
+ </ >
91
+ ) ,
92
+ showOnHomepage : true ,
93
+ githubUsername : "" ,
94
+ staticProfileImage : "alvinphang" ,
95
+ } ,
77
96
] ;
78
97
79
98
export default TWEETS ;
File renamed without changes.
You can’t perform that action at this time.
0 commit comments