20 lines
No EOL
483 B
Text
20 lines
No EOL
483 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;
|
|
|
|
<SectionContent SectionName="top-bar">
|
|
<Icon Name="Icons.MagnifyingGlass"></Icon>
|
|
@Loc["Search"]
|
|
</SectionContent>
|
|
|
|
<SearchComponent/>
|
|
|
|
@code {
|
|
} |