diff --git a/components/design-scaffolds/marketing.tsx b/components/design-scaffolds/marketing.tsx index 86db585..1c98b03 100644 --- a/components/design-scaffolds/marketing.tsx +++ b/components/design-scaffolds/marketing.tsx @@ -546,21 +546,19 @@ export function MarketingAceternity({ themeColor, config }: { themeColor?: Theme ); if (bgStyle === "beams") return (
+ {/* CSS radial glow — no SVG gradient ID reference (avoids black-fill fallback) */} +
- - - - - - - {Array.from({ length: 14 }).map((_, i) => { const x = 200 + (i - 7) * 32; + const lineColor = isDark + ? (i % 3 === 0 ? p : i % 3 === 1 ? "#3b82f6" : "#06b6d4") + : (i % 3 === 0 ? p : i % 3 === 1 ? "#6366f1" : "#0891b2"); return ( ); @@ -570,14 +568,16 @@ export function MarketingAceternity({ themeColor, config }: { themeColor?: Theme ); if (bgStyle === "meteors") return (
-
+
{Array.from({ length: 12 }).map((_, i) => (
- - - - - - - - + +
);