MissnationBlazor/MissNationSharedUI/Shared/Components/Layout/SecondaryLayout.razor

45 lines
962 B
Plaintext

@inherits LayoutComponentBase
@using System.Runtime.InteropServices.JavaScript
@using MissNationSharedUI.Shared.Components.Layout
<!-- preloader start>
<div id="tb-preloader">
<div class="tb-preloader-wave"></div>
</div>
< preloader end -->
<div class="wrapper">
<!--div class="page"-->
<main>
<!--div class="top-row px-4">
<a href="https://learn.microsoft.com/aspnet/core/" target="_blank">About</a>
</div-->
<CorporateNavbarComponent/>
<article class="content gray-bg">
@Body
</article>
<CorporateFooterComponent/>
</main>
</div>
@code {
/*protected override async Task OnInitializedAsync()
{
_jsModule = await JSRuntime.InvokeAsync<IJSObjectReference>("import", "./_content/MissNationSharedUI/assets/exampleJsInterop.js");
await _jsModule.InvokeVoidAsync("getMessage");
}*/
}