Iceshrimp.NET/Iceshrimp.Frontend/Pages/SearchPage.razor
2025-02-18 17:23:21 +01:00

22 lines
No EOL
519 B
Text

@page "/search"
@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 IStringLocalizer<Localization> Loc;
<HeadTitle Text="@Loc["Search"]"/>
<SectionContent SectionName="top-bar">
<Icon Name="Icons.MagnifyingGlass"></Icon>
@Loc["Search"]
</SectionContent>
<SearchComponent/>
@code {
}