added two link in useCases

This commit is contained in:
rockyeverlast
2024-04-30 17:34:05 +05:30
parent 84958115ec
commit 2e9afbb559
5 changed files with 66 additions and 47 deletions

View File

@@ -101,7 +101,7 @@ const MobileFooter = () => {
color={"#B0B0B0"}
fontFamily={"Mona Sans"}
fontWeight={"500"}
fontSize={"16px"}
fontSize={"22px"}
>
Social
</Text>

View File

@@ -108,7 +108,7 @@ export const MobileMenu = () => {
justifyContent={"space-between"}
alignItems={"center"}
padding={"2rem 1rem"}
marginBottom={"1rem"}
marginBottom={"2rem"}
gap={"2rem"}
sx={{
"@media (max-width: 1024px)": {},

View File

@@ -568,17 +568,62 @@ const NavBar = () => {
: normal
}
>
<Box
display={"flex"}
alignItems={"center"}
gap={"1rem"}
marginBottom={"1rem"}
<Box
display={"flex"}
alignItems={"center"}
gap={"1rem"}
marginBottom={"1rem"}
>
<Image src={healthTech} width={`${iconwidth}`} />
HealthTech
</Box>
</Link>
</PopoverBody>
<PopoverBody width={"45%"}>
<Link
to="/identity-security"
className="link"
style={
location.pathname === "/identity-security"
? highlight
: normal
}
>
<Image src={healthTech} width={`${iconwidth}`} />
HealthTech
</Box>
</Link>
</PopoverBody>
<Box
display={"flex"}
alignItems={"center"}
gap={"1rem"}
marginBottom={"1rem"}
>
<Image src={healthTech} width={`${iconwidth}`} />
Identity and Security
</Box>
</Link>
</PopoverBody>
<PopoverBody width={"45%"}>
<Link
to="/Telecom"
className="link"
style={
location.pathname === "/Telecom"
? highlight
: normal
}
>
<Box
display={"flex"}
alignItems={"center"}
gap={"1rem"}
marginBottom={"1rem"}
>
<Image src={healthTech} width={`${iconwidth}`} />
Telecom
</Box>
</Link>
</PopoverBody>
</Box>
</PopoverContent>
</Popover>