From c34484ba375517afe950fc72669b66cb330d4d90 Mon Sep 17 00:00:00 2001 From: Slesa Adhikari Date: Mon, 11 Sep 2023 18:51:10 -0500 Subject: [PATCH] Allow specifying banner image for About page --- app/scripts/components/about/index.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/scripts/components/about/index.tsx b/app/scripts/components/about/index.tsx index c431d3105..3323ee772 100644 --- a/app/scripts/components/about/index.tsx +++ b/app/scripts/components/about/index.tsx @@ -18,6 +18,10 @@ function About() { description={ aboutContent?.data.description || 'This is the default description' } + coverSrc={aboutContent?.data.media?.src} + coverAlt={aboutContent?.data.media?.alt} + attributionAuthor={aboutContent?.data.media?.author?.name} + attributionUrl={aboutContent?.data.media?.author?.url} />