From 59774a9b97de6bdf187895edafb09e43e3d4a8a7 Mon Sep 17 00:00:00 2001 From: Randall Stillwell Date: Mon, 28 Jul 2025 10:59:11 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=AF=20Replace=20Complex=20Logo=20with?= =?UTF-8?q?=20Clean=20Static=20SVG?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ✨ Simple & Clean: - Removed all complex animated fire and card elements - Using static SVG logo from Vercel Blob storage - Clean, professional appearance for login page 🖼️ Logo Implementation: - Direct img tag with blob storage URL - Responsive sizing with proper aspect ratio - Subtle drop shadow for depth - Gentle hover effects for interactivity 🎨 Perfect for Login: - Compact 1.2x container size - Scales nicely with size prop - Clean transitions and hover states - No complex animations to distract Much cleaner and more professional! 🚀 --- components/AnimatedFireLogo.js | 316 +++------------------------------ 1 file changed, 20 insertions(+), 296 deletions(-) diff --git a/components/AnimatedFireLogo.js b/components/AnimatedFireLogo.js index d348c8a..9833b4b 100644 --- a/components/AnimatedFireLogo.js +++ b/components/AnimatedFireLogo.js @@ -3,315 +3,39 @@ import { useTheme } from '../lib/theme-context'; export default function AnimatedFireLogo({ size = 100 }) { const { theme } = useTheme(); - // Theme-aware colors matching the SVG - const colors = { - dark: { - fireMain: '#F6891F', - fireAccent1: '#F36E21', - fireAccent2: '#FFD04A', - fireAccent3: '#FDBA16', - cardBg: '#F6E3AE', - cardBorder: '#E38F36' - }, - light: { - fireMain: '#F6891F', - fireAccent1: '#F36E21', - fireAccent2: '#FFD04A', - fireAccent3: '#FDBA16', - cardBg: '#F6E3AE', - cardBorder: '#E38F36' - } - }; - - const currentColors = colors[theme] || colors.light; - return (
- {/* Fire Background - Using exact SVG paths */} - - - {/* Main fire shapes from the SVG */} - - - - - - - - - - - - - - - {/* Small flame details */} - - - - - - - - - - - - - - - {/* Left Card - Simple rectangular card */} -
-
- {/* Small fire icon in corner */} -
-
-
- - {/* Right Card - Simple rectangular card */} -
-
- {/* Small fire icon in corner */} -
-
-
- - {/* Center Card - Simple rectangular card, larger */} -
-
- {/* Centered fire icon */} -
- {/* Inner flame accent */} -
-
-
-
+ Deck Hearth Logo