From af986c9ba3fbc0a56f0e2f3e2e7906d35e15ac23 Mon Sep 17 00:00:00 2001 From: adilallo <39313955+adilallo@users.noreply.github.com> Date: Tue, 19 Aug 2025 22:36:50 -0600 Subject: [PATCH] Hero Banner xl breakpoint --- app/components/ContentLockup.js | 60 +++++++++++++++++++++------------ app/components/HeroBanner.js | 2 +- 2 files changed, 40 insertions(+), 22 deletions(-) diff --git a/app/components/ContentLockup.js b/app/components/ContentLockup.js index e7dbb85..85f59f5 100644 --- a/app/components/ContentLockup.js +++ b/app/components/ContentLockup.js @@ -6,35 +6,53 @@ const ContentLockup = ({ title, subtitle, description, ctaText, ctaHref }) => { return (
{/* Text content container */} -
- {/* Title container */} -
-

- {title} -

- Decorative shapes +
+ {/* Title and subtitle group - no gap between them at xl */} +
+ {/* Title container */} +
+

+ {title} +

+ Decorative shapes +
+ + {/* Subtitle */} +

+ {subtitle} +

- {/* Subtitle */} -

- {subtitle} -

- - {/* Description */} -

+ {/* Description - 20px gap from subtitle at xl */} +

{description}

{/* CTA Button */}
- + {/* Small button for xsm and sm breakpoints */} +
+ +
+ {/* Large button for md and lg breakpoints */} +
+ +
+ {/* XLarge button for xl breakpoint */} +
+ +
); diff --git a/app/components/HeroBanner.js b/app/components/HeroBanner.js index 98b9d0e..b57dadb 100644 --- a/app/components/HeroBanner.js +++ b/app/components/HeroBanner.js @@ -5,7 +5,7 @@ import HeroDecor from "./HeroDecor"; const HeroBanner = ({ title, subtitle, description, ctaText, ctaHref }) => { return ( -
+
{/* Frame container for content */}