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