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 */} +
+ + + + +
-
-
+
+ ); };