Start window Onboarding1

This commit is contained in:
DwCay
2022-06-02 14:27:04 +03:00
parent 9484b0bda9
commit 24a66478d6
11 changed files with 30 additions and 128 deletions

View File

@@ -85,7 +85,7 @@ function Sidebar({
</svg>
</button>
{/* Logo */}
<NavLink end to="/" className="block">
<NavLink end to="/dashboard" className="block">
<img alt='logo' src={Logo} width="89" height="32"/>
</NavLink>
</div>
@@ -154,7 +154,7 @@ function Sidebar({
<li className="mb-1 last:mb-0">
<NavLink
end
to="/"
to="/dashboard"
className={({ isActive }) =>
'block text-slate-400 hover:text-slate-200 transition duration-150 truncate ' + (isActive ? '!text-indigo-500' : '')
}