@@ -15,6 +15,10 @@ import Popover from '@mui/material/Popover';
1515import Toolbar from '@mui/material/Toolbar' ;
1616import Tooltip from '@mui/material/Tooltip' ;
1717import Typography from '@mui/material/Typography' ;
18+ import { alpha , useTheme } from '@mui/material/styles' ;
19+ import { deepPurple } from '@mui/material/colors' ;
20+
21+ // Material Icons
1822import DarkModeIcon from '@mui/icons-material/DarkMode' ;
1923import DashboardIcon from '@mui/icons-material/DashboardOutlined' ;
2024import EmailIcon from '@mui/icons-material/EmailOutlined' ;
@@ -23,18 +27,16 @@ import LightModeIcon from '@mui/icons-material/LightMode';
2327import MenuIcon from '@mui/icons-material/Menu' ;
2428import SettingsIcon from '@mui/icons-material/Settings' ;
2529import UserIcon from '@mui/icons-material/Person' ;
26- import { alpha , useTheme } from '@mui/material/styles' ;
27- import { deepPurple } from '@mui/material/colors' ;
28-
29- import ColorModeContext from '../components/ColorModeContext' ;
30- import CustomButton from '../components/CustomButton' ;
3130
3231// Font Awesome Icon
3332import { library } from '@fortawesome/fontawesome-svg-core' ;
3433import { faCoins } from '@fortawesome/free-solid-svg-icons' ;
3534import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' ;
3635library . add ( faCoins ) ;
3736
37+ import ColorModeContext from '../components/ColorModeContext' ;
38+ import CustomButton from '../components/CustomButton' ;
39+
3840const Header = ( { onSidebarOpen } ) => {
3941 const [ open , setOpen ] = useState ( false ) ;
4042 const theme = useTheme ( ) ;
0 commit comments