@page "/hostessabout" @layout HostessLayout @inject NavigationManager NavigationManager @using MissNationSharedUI.Shared.Components.Layout About Miss Nation Hostess Agency | Our Mission & Vision

About us

Introduction of Our Company

At Miss Nation Hostess Agency, our mission is to be the preferred partner for businesses looking to create memorable events. Through carefully selected and highly trained hostesses, we ensure seamless execution and professional brand representation.

Our vision is to craft engaging event experiences that leave a lasting impact while fostering strong relationships with clients and our talented team. Every event is unique, and we strive to provide customized, high-quality services tailored to your specific needs.

We are committed to exceeding expectations, ensuring professionalism, reliability, and exceptional service every step of the way.

@code { [Inject] public IJSRuntime JSRuntime { get; set; } private IJSObjectReference _jsModule; protected override void OnInitialized() { base.OnInitialized(); // var currentUri = new Uri(NavigationManager.Uri); // if (currentUri.Host == "missnationllc.com") // { // NavigationManager.NavigateTo("/corporateabout"); // } } protected override async Task OnAfterRenderAsync(bool firstRender) { base.OnAfterRender(firstRender); if (firstRender) { _jsModule = await JSRuntime.InvokeAsync("import", "./_content/MissNationSharedUI/assets/exampleJsInterop.js"); await _jsModule.InvokeVoidAsync("getMessage"); } } }