74 lines
2.8 KiB
Plaintext
74 lines
2.8 KiB
Plaintext
@page "/hostessabout"
|
|
@layout HostessLayout
|
|
@inject NavigationManager NavigationManager
|
|
@using MissNationSharedUI.Shared.Components.Layout
|
|
<PageTitle>About Miss Nation Hostess Agency | Our Mission & Vision</PageTitle>
|
|
<HeadContent>
|
|
<meta name="description" content="Learn more about Miss Nation Hostess Agency, our mission, vision, and commitment to delivering exceptional hostess services for events in the UAE.">
|
|
<meta name="keywords" content="hostess agency UAE, event staffing, professional hostesses, corporate event services, brand activation, exhibition support">
|
|
</HeadContent>
|
|
|
|
|
|
<!--body content start-->
|
|
<section class="body-content gray-bg">
|
|
<div class="page-content">
|
|
<div class="container">
|
|
|
|
<div class="heading-title-alt text-center">
|
|
<h3 class="text-uppercase">About us</h3>
|
|
<span class="text-uppercase">Introduction of Our Company</span>
|
|
</div>
|
|
|
|
|
|
<div class="row" style="margin-left:1px; margin-right:1px;">
|
|
|
|
|
|
<div class="col-xs-12">
|
|
|
|
|
|
<p style="text-align: justify;">
|
|
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.
|
|
</p>
|
|
<p style="text-align: justify;">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.</p>
|
|
<p style="text-align: justify;">
|
|
We are committed to exceeding expectations, ensuring professionalism, reliability, and exceptional service every step of the way.
|
|
</p>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</section>
|
|
<!--body content end-->
|
|
<!--footer start 1-->
|
|
<!--footer 1 end-->
|
|
@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<IJSObjectReference>("import", "./_content/MissNationSharedUI/assets/exampleJsInterop.js");
|
|
await _jsModule.InvokeVoidAsync("getMessage");
|
|
}
|
|
}
|
|
}
|