26 lines
No EOL
656 B
Text
26 lines
No EOL
656 B
Text
@page "/Settings"
|
|
@using Iceshrimp.Assets.PhosphorIcons
|
|
@using Iceshrimp.Frontend.Components
|
|
@using Iceshrimp.Frontend.Localization
|
|
@using Microsoft.AspNetCore.Authorization
|
|
@using Microsoft.AspNetCore.Components.Sections
|
|
@using Microsoft.Extensions.Localization
|
|
@attribute [Authorize]
|
|
@* @inject NavigationManager Nav; *@
|
|
@inject IStringLocalizer<Localization> Loc;
|
|
|
|
<SectionContent SectionName="top-bar">
|
|
<Icon Name="Icons.Gear"></Icon>
|
|
@Loc["Settings"]
|
|
</SectionContent>
|
|
|
|
<div class="body">
|
|
<SettingsMenu/>
|
|
</div>
|
|
|
|
@code {
|
|
protected override void OnInitialized()
|
|
{
|
|
// Nav.NavigateTo("/settings/profile");
|
|
}
|
|
} |