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 */} {/* Right Card - Using exact SVG path */}
{/* Left Card - Using exact SVG path */}
{/* Center Card - Using exact SVG path */}
{/* Fire icon in center */}
); }