Navigation color update
parent
b3e108e7a3
commit
c5e2a03a93
|
@ -5,18 +5,19 @@ import { useTranslation } from "react-i18next";
|
|||
const Navigation = () => {
|
||||
const { t } = useTranslation();
|
||||
const activeStyle = { color: "#F15B2A" };
|
||||
const style = { color: "#fff" };
|
||||
|
||||
return (
|
||||
<>
|
||||
<NavLink to="/" activeStyle={activeStyle} exact>
|
||||
<NavLink to="/" activeStyle={activeStyle} style={style} exact>
|
||||
{t("Menu.Home")}
|
||||
</NavLink>
|
||||
{" | "}
|
||||
<NavLink to="/sessions" activeStyle={activeStyle}>
|
||||
<NavLink to="/sessions" activeStyle={activeStyle} style={style}>
|
||||
{t("Menu.Sessions")}
|
||||
</NavLink>
|
||||
{" | "}
|
||||
<NavLink to="/about" activeStyle={activeStyle}>
|
||||
<NavLink to="/about" activeStyle={activeStyle} style={style}>
|
||||
{t("Menu.About")}
|
||||
</NavLink>
|
||||
</>
|
||||
|
|
Loading…
Reference in New Issue