mirror of
https://dev.azure.com/tstanciu94/ReverseProxy/_git/ReverseProxy_Frontend
synced 2022-12-28 18:12:07 +02:00
Navigation color update
This commit is contained in:
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…
x
Reference in New Issue
Block a user