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 (