The logo in the Navigation.jsx now redirects to the home page

This commit is contained in:
2023-07-08 02:15:39 +02:00
parent 6a358a121a
commit 4764111468

View File

@ -21,7 +21,8 @@ export const Navigation = () => {
backdropFilter: "blur(5px)", WebkitBackdropFilter: "blur(5px)"
}}>
<Stack direction="row" alignItems="center" justifyContent="space-evenly" flexWrap="wrap">
<img src={isDarkMode ? LogoDark : LogoLight} alt="Logo" height={NAVBAR_HEIGHT / 2}/>
<img src={isDarkMode ? LogoDark : LogoLight} alt="Logo" height={NAVBAR_HEIGHT / 2}
onClick={() => navigate("/")} style={{cursor: "pointer"}}/>
{!isMobile && <>
<Stack direction="row" alignItems="center" justifyContent="space-between" flexWrap="wrap">