import { useTheme } from '../lib/theme-context'; export default function AnimatedFireLogo({ size = 100 }) { const { theme } = useTheme(); // Theme-aware colors for fire const fireColors = { dark: { flame1: '#FF6B35', flame2: '#F7931E', flame3: '#FFF200', flame4: '#FDBA16', flame5: '#FF4500' }, light: { flame1: '#F36E21', flame2: '#F6891F', flame3: '#FFD04A', flame4: '#FDBA16', flame5: '#D84315' } }; const currentFireColors = fireColors[theme] || fireColors.light; return (
{/* Fire Background */} {/* Center Card */}
{/* Small fire icon in center */}
{/* Left Card */}
{/* Right Card */}
); }