added two link in useCases

This commit is contained in:
rockyeverlast
2024-04-30 17:34:05 +05:30
parent 3ccb36ae64
commit 416473bb43

View File

@@ -593,6 +593,50 @@ const NavBar = () => {
</Box>
</Link>
</PopoverBody>
<PopoverBody width={"45%"}>
<Link
to="/identity-security"
className="link"
style={
location.pathname === "/identity-security"
? highlight
: normal
}
>
<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>