fix/layout #16

Merged
mihir merged 2 commits from fix/layout into main 2025-02-18 17:33:57 +05:30
2 changed files with 8 additions and 3 deletions
Showing only changes of commit 0ad8d1cad8 - Show all commits

BIN
public/loop hero new.mov Normal file

Binary file not shown.

View File

@ -71,7 +71,7 @@ const Header: React.FC = () => {
</Box>
{/* Mobile Drawer Menu */}
<Drawer anchor="right" open={mobileOpen} onClose={toggleMobileMenu}>
<Drawer anchor="right" open={mobileOpen} onClose={toggleMobileMenu} sx={{zIndex:111111}}>
<Box sx={{ width: 250 }} role="presentation" onClick={toggleMobileMenu} onKeyDown={toggleMobileMenu}>
<List>
<ListItem disablePadding>
@ -81,12 +81,17 @@ const Header: React.FC = () => {
</ListItem>
<ListItem disablePadding>
<ListItemButton>
<ListItemText primary="Services" />
<ListItemText primary="About" />
</ListItemButton>
</ListItem>
<ListItem disablePadding>
<ListItemButton>
<ListItemText primary="Services" />
</ListItemButton>
</ListItem>
<ListItem >
<ListItemButton sx={{ backgroundColor: "blue", color: "white", "&:hover": { backgroundColor: "darkblue" } }}>
<ListItemText primary="Download" />
<ListItemText primary="Contact Us" />
</ListItemButton>
</ListItem>
</List>