You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/pages/careers/index.tsx
+41-9Lines changed: 41 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -172,24 +172,54 @@ const testimonials = [
172
172
role: "Senior Frontend Developer",
173
173
content:
174
174
"recode hive has given me the opportunity to work on cutting-edge projects while maintaining an amazing work-life balance. The team is incredibly supportive and collaborative.",
175
-
avatar: "/img/testimonial-sarah.jpg",
175
+
avatar: "/icons/vivien.png",
176
176
},
177
177
{
178
178
name: "Marcus Johnson",
179
179
role: "DevOps Engineer",
180
180
content:
181
181
"I love the remote-first culture here. The flexibility to work from anywhere has allowed me to travel while building my career. The learning opportunities are endless.",
182
-
avatar: "/img/testimonial-marcus.jpg",
182
+
avatar: "/icons/daniel.png",
183
183
},
184
184
{
185
185
name: "Priya Patel",
186
186
role: "Product Manager",
187
187
content:
188
188
"The growth mindset at recode hive is real. I've been able to take on new challenges and expand my skill set with full support from leadership.",
189
-
avatar: "/img/testimonial-priya.jpg",
189
+
avatar: "/icons/ethan.png",
190
190
},
191
191
];
192
192
193
+
functionTestimonialAvatar({ avatar, name }: {avatar?: string;name: string}){
0 commit comments