From 5f8e19f5107b204de6bf79f85f166a81a91b3878 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 8 Jun 2026 05:42:34 +0000 Subject: [PATCH 1/3] Update Bible study series image layout --- src/components/BibleStudySection.tsx | 22 ++++++++++++++++------ 1 file changed, 16 insertions(+), 6 deletions(-) diff --git a/src/components/BibleStudySection.tsx b/src/components/BibleStudySection.tsx index fb66428..af37a8e 100644 --- a/src/components/BibleStudySection.tsx +++ b/src/components/BibleStudySection.tsx @@ -1,9 +1,12 @@ import { Calendar, Clock, Users, Book } from 'lucide-react'; import { Link } from 'react-router-dom'; +import { motion, useReducedMotion } from 'framer-motion'; import FadeIn from './FadeIn'; const BibleStudySection = () => { + const prefersReducedMotion = useReducedMotion(); + const expectations = [ { label: 'Opening Prayer', desc: 'We begin each session centering our hearts on God' }, { label: 'Scripture Reading', desc: "We dive deep into God's Word together" }, @@ -90,19 +93,26 @@ const BibleStudySection = () => { {/* Current Series */} -
+

Current Series

-
+ Current Bible study topic artwork for character study in 1 Samuel focused on David. -
+

Character Study in 1 Samuel

From 44a5f9935e401af33c92df40efdb79bc2dce3265 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 8 Jun 2026 05:43:14 +0000 Subject: [PATCH 2/3] Refine Bible study image motion constants --- src/components/BibleStudySection.tsx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/components/BibleStudySection.tsx b/src/components/BibleStudySection.tsx index af37a8e..b8a0861 100644 --- a/src/components/BibleStudySection.tsx +++ b/src/components/BibleStudySection.tsx @@ -6,6 +6,8 @@ import FadeIn from './FadeIn'; const BibleStudySection = () => { const prefersReducedMotion = useReducedMotion(); + const maxSeriesImageHeight = '34rem'; + const seriesImageAnimationDuration = 0.45; const expectations = [ { label: 'Opening Prayer', desc: 'We begin each session centering our hearts on God' }, @@ -98,11 +100,12 @@ const BibleStudySection = () => { Current Series Date: Mon, 8 Jun 2026 05:43:58 +0000 Subject: [PATCH 3/3] Polish Bible study image animation behavior --- src/components/BibleStudySection.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/BibleStudySection.tsx b/src/components/BibleStudySection.tsx index b8a0861..1ec8b09 100644 --- a/src/components/BibleStudySection.tsx +++ b/src/components/BibleStudySection.tsx @@ -102,11 +102,11 @@ const BibleStudySection = () => {