From d51faaa12248f0c5ccc7d96e82f848272ea758b7 Mon Sep 17 00:00:00 2001 From: Randall Stillwell Date: Mon, 28 Jul 2025 10:53:53 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=83=8F=20Simplify=20Cards=20to=20Match=20?= =?UTF-8?q?Reference=20Image?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ✨ Clean Card Design: - Replaced complex SVG cards with simple rectangular cards - Clean rounded corners (8px border-radius) - Proper card proportions and positioning - Beautiful drop shadows for depth 🎯 Perfect Positioning: - Left card: 25% from left, rotated -20° - Right card: 25% from right, rotated +20° - Center card: Perfectly centered, no rotation - All cards at 50% height for better balance 🔥 Simple Fire Icons: - Small flame icons in card corners - Center card has larger, centered flame icon - Gradient fire colors matching theme - Clean flame shape with inner accent 🎨 Enhanced Styling: - Consistent card colors and borders - Progressive shadow depth (center card strongest) - Gentle floating animations maintained - Cards properly layered above fire background Now matches the reference image much better! 🎯✨ --- components/AnimatedFireLogo.js | 233 ++++++++++++++++----------------- 1 file changed, 115 insertions(+), 118 deletions(-) diff --git a/components/AnimatedFireLogo.js b/components/AnimatedFireLogo.js index cea0b82..d348c8a 100644 --- a/components/AnimatedFireLogo.js +++ b/components/AnimatedFireLogo.js @@ -70,111 +70,117 @@ export default function AnimatedFireLogo({ size = 100 }) { - {/* Right Card - Using exact SVG path */} -
- - - - - - - - - - - - - - - - - - - - - - - - - -
- - {/* Left Card - Using exact SVG path */} + {/* Left Card - Simple rectangular card */}
- - - - - - - - - - - - - - - - - - - - - - - - - +
+ {/* Small fire icon in corner */} +
+
- {/* Center Card - Using exact SVG path */} + {/* Right Card - Simple rectangular card */} +
+
+ {/* Small fire icon in corner */} +
+
+
+ + {/* Center Card - Simple rectangular card, larger */}
- - - - - - - {/* Fire icon in center */} - - - - - - - - - - - - - - - - - - - - - - - +
+ {/* Centered fire icon */} +
+ {/* Inner flame accent */} +
+
+
);