From 44b76a9d95e9940a5977c8667f66f13337e7c2b7 Mon Sep 17 00:00:00 2001 From: Molly M Date: Sun, 2 Aug 2026 16:57:51 -0700 Subject: [PATCH 1/2] Make author photos black and white --- src/app/authors/AuthorsTabs.tsx | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/app/authors/AuthorsTabs.tsx b/src/app/authors/AuthorsTabs.tsx index f8f3f79a..d2e04f00 100644 --- a/src/app/authors/AuthorsTabs.tsx +++ b/src/app/authors/AuthorsTabs.tsx @@ -18,6 +18,8 @@ const TABS = [ { id: 'alumni', label: 'Alumni' }, ] +const AUTHOR_PHOTO_CLASS = 'w-full h-full object-cover object-top grayscale group-hover:scale-[1.03] transition-transform duration-500' + type Props = { heroTitle: string heroSubtitle: string @@ -134,7 +136,7 @@ function LeaderCard({ author }: { author: typeof authors[number] }) { {author.name} ) : (
@@ -180,7 +182,7 @@ function AdvisorCard({ author }: { author: typeof authors[number] }) { {author.name} ) : (
@@ -208,7 +210,7 @@ function AlumniCard({ author }: { author: typeof authors[number] }) { {author.name} ) : (
From 739646074135cc13060e9c290a6a113add2ff831 Mon Sep 17 00:00:00 2001 From: Lukas Bresser <82394590+lksbrssr@users.noreply.github.com> Date: Mon, 3 Aug 2026 07:10:51 -0600 Subject: [PATCH 2/2] Make blog byline author photos black and white --- src/components/AuthorCard.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/AuthorCard.tsx b/src/components/AuthorCard.tsx index bc8ec905..13d773fd 100644 --- a/src/components/AuthorCard.tsx +++ b/src/components/AuthorCard.tsx @@ -21,7 +21,7 @@ export default function AuthorCard({ slug, variant = 'default' }: AuthorCardProp className="inline-flex items-center gap-4 py-3 px-5 rounded-2xl bg-gray-50 hover:bg-gray-100 border border-gray-100 hover:border-gray-200 transition-all no-underline group" > {avatar ? ( - {name} + {name} ) : ( {name.charAt(0)} @@ -43,7 +43,7 @@ export default function AuthorCard({ slug, variant = 'default' }: AuthorCardProp className="inline-flex items-center gap-3 py-2.5 px-4 rounded-xl bg-gray-50 hover:bg-gray-100 border border-gray-100 hover:border-gray-200 transition-all no-underline group" > {avatar ? ( - {name} + {name} ) : ( {name.charAt(0)} @@ -64,7 +64,7 @@ export default function AuthorCard({ slug, variant = 'default' }: AuthorCardProp className="inline-flex items-center gap-4 no-underline group" > {avatar ? ( - {name} + {name} ) : ( {name.charAt(0)} @@ -81,7 +81,7 @@ export default function AuthorCard({ slug, variant = 'default' }: AuthorCardProp return ( {avatar ? ( - {name} + {name} ) : ( )}