diff --git a/components/AnimatedFireLogo.js b/components/AnimatedFireLogo.js index bcb2be2..1ba7714 100644 --- a/components/AnimatedFireLogo.js +++ b/components/AnimatedFireLogo.js @@ -1,10 +1,10 @@ import { useTheme } from '../lib/theme-context'; -export default function AnimatedFireLogo({ size = 80 }) { +export default function AnimatedFireLogo({ size = 100 }) { const { theme } = useTheme(); - // Theme-aware colors - const colors = { + // Theme-aware colors for fire + const fireColors = { dark: { flame1: '#FF6B35', flame2: '#F7931E', @@ -21,245 +21,267 @@ export default function AnimatedFireLogo({ size = 80 }) { } }; - const currentColors = colors[theme] || colors.light; + const currentFireColors = fireColors[theme] || fireColors.light; return (
+ {/* Fire Background */} - {/* Main flame paths */} - - - - - - - - - - - - - {/* Small accent flames */} - - - - - + + + + + + + + + + + + + {/* Center Card */} +
+ + + + + {/* Small fire icon in center */} + + + + + + + + + + + + + + + + + + + + + +
+ + {/* Left Card */} +
+ + + + + + + + + + + + + + + + + + + + + + + + + +
+ + {/* Right Card */} +
+ + + + + + + + + + + + + + + + + + + + + + + + + +
+