From b789dc595e77051345d644dde5f34e8fb0820907 Mon Sep 17 00:00:00 2001 From: adilallo <39313955+adilallo@users.noreply.github.com> Date: Tue, 26 Aug 2025 23:09:21 -0600 Subject: [PATCH] Feature Grid xl breakpoint --- app/components/ContentLockup.js | 12 +++-- app/components/FeatureGrid.js | 88 +++++++++++++++++---------------- 2 files changed, 53 insertions(+), 47 deletions(-) diff --git a/app/components/ContentLockup.js b/app/components/ContentLockup.js index 6a3099f..fbdb486 100644 --- a/app/components/ContentLockup.js +++ b/app/components/ContentLockup.js @@ -59,11 +59,13 @@ const ContentLockup = ({ {/* Title container */}

{title}

- Decorative shapes + {variant === "hero" && ( + Decorative shapes + )}
{/* Subtitle */} diff --git a/app/components/FeatureGrid.js b/app/components/FeatureGrid.js index d73eb74..f6e19c1 100644 --- a/app/components/FeatureGrid.js +++ b/app/components/FeatureGrid.js @@ -6,50 +6,54 @@ import MiniCard from "./MiniCard"; const FeatureGrid = ({ title, subtitle, className = "" }) => { return ( -
-
- {/* Feature Content Lockup */} - +
+
+
+ {/* Feature Content Lockup */} +
+ +
- {/* MiniCard Grid */} -
- - - - + {/* MiniCard Grid */} +
+ + + + +
-
-
+
+ ); };