Added a link to the dashboard in the Navigation

This commit is contained in:
Mathias Wagner 2022-09-12 21:06:21 +02:00
parent 2aae674265
commit cabf9dfe8d

View File

@ -23,10 +23,9 @@ const Navigation = () => {
className={({isActive}) => (isActive ? "active" : "inactive")}>{item.name}</NavLink> className={({isActive}) => (isActive ? "active" : "inactive")}>{item.name}</NavLink>
</li>))} </li>))}
</ul> </ul>
</div> </div>
<div className="dashboard-area"> <div className="dashboard-area">
<Button text="Dashboard"/> <Button text="Dashboard" to="https://dash.sheepstar.xyz/"/>
</div> </div>
</header> </header>
); );