Skip to content

Commit

Permalink
Update Sidebar.razor
Browse files Browse the repository at this point in the history
Fix hrefs
  • Loading branch information
p6laris authored Mar 7, 2024
1 parent 672c5fd commit ddc609c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions AraratMorse/Components/UI/Sidebar.razor
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
</a>
</li>
<li>
<a href="/about" class="flex items-center p-2 text-black rounded-lg hover:bg-gray-100 group">
<a href="about" class="flex items-center p-2 text-black rounded-lg hover:bg-gray-100 group">
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 24 24">
<path fill="currentColor" fill-rule="evenodd" d="M22 12c0 5.523-4.477 10-10 10S2 17.523 2 12S6.477 2 12 2s10 4.477 10 10Zm-10 5.75a.75.75 0 0 0 .75-.75v-6a.75.75 0 0 0-1.5 0v6c0 .414.336.75.75.75ZM12 7a1 1 0 1 1 0 2a1 1 0 0 1 0-2Z" clip-rule="evenodd"/>
</svg>
Expand Down Expand Up @@ -70,11 +70,11 @@

void NavigateToConverter()
{
Navigation.NavigateTo("/", false);
Navigation.NavigateTo("", false);
isOpened = false;
}

#endregion


}
}

0 comments on commit ddc609c

Please sign in to comment.