Skip to content

Commit 600f368

Browse files
committed
Improve testimonial images
1 parent 51f9659 commit 600f368

File tree

1 file changed

+4
-3
lines changed
  • src/app/conf/2025/components/testimonials

1 file changed

+4
-3
lines changed

src/app/conf/2025/components/testimonials/index.tsx

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -108,15 +108,16 @@ export function TestimonialAuthor({
108108
return (
109109
<div className="relative flex shrink-0 flex-col items-center justify-center whitespace-pre md:px-6 lg:h-full lg:px-8">
110110
<div className="relative bg-neu-500 dark:bg-neu-200 dark:opacity-90">
111-
<Image
111+
<img // we're not using next-image-export-optimizer because these images are small
112+
// and it fails to download and optimize avatars from Sched
112113
src={author.avatar}
113114
alt={author.name}
114115
width={128}
115116
height={128}
116-
className="size-16 saturate-[.1] xl:size-32"
117+
className="size-16 saturate-[.1] dark:opacity-90 xl:size-32"
117118
fetchPriority="low"
118119
/>
119-
<div className="absolute inset-0 z-[1] bg-pri-darker opacity-80 mix-blend-plus-lighter" />
120+
<div className="absolute inset-0 z-[1] bg-pri-darker opacity-80 mix-blend-plus-lighter dark:mix-blend-color" />
120121
<Stripes />
121122
</div>
122123
<AuthorNameAndRole author={author} className="contents md:hidden" />

0 commit comments

Comments
 (0)