28 lines
No EOL
826 B
Text
28 lines
No EOL
826 B
Text
@using Iceshrimp.Assets.PhosphorIcons
|
|
@using Iceshrimp.Frontend.Localization
|
|
@using Microsoft.Extensions.Localization
|
|
@inject NavigationManager Nav;
|
|
@inject IStringLocalizer<Localization> Loc;
|
|
<div class="nav">
|
|
<NavLink href="/settings/profile">
|
|
<div class="sidebar-btn">
|
|
<Icon Name="Icons.User"/>
|
|
<span class="text">@Loc["Profile"]</span>
|
|
</div>
|
|
</NavLink>
|
|
<NavLink href="/settings/about">
|
|
<div class="sidebar-btn">
|
|
<Icon Name="Icons.Info"/>
|
|
<span class="text">@Loc["About"]</span>
|
|
</div>
|
|
</NavLink>
|
|
<NavLink href="/settings/filters">
|
|
<div class="sidebar-btn">
|
|
<Icon Name="Icons.SpeakerX"/>
|
|
<span class="text">@Loc["Filters"]</span>
|
|
</div>
|
|
</NavLink>
|
|
</div>
|
|
|
|
@code {
|
|
} |