63 lines
2.2 KiB
Plaintext
63 lines
2.2 KiB
Plaintext
@page "/hostesscontact"
|
|
@layout HostessLayout
|
|
@using MissNationSharedUI.Shared.Components.Layout
|
|
|
|
<PageTitle>Contact Miss Nation Hostess Agency | Book Event Staff in UAE</PageTitle>
|
|
<HeadContent>
|
|
<meta name="description" content="Contact Miss Nation Hostess Agency for top-tier hostess and event staffing services in the UAE. Get a quote today!">
|
|
<meta name="keywords" content="contact hostess agency, book event staff UAE, professional hostesses, exhibition staffing, corporate event services">
|
|
|
|
</HeadContent>
|
|
|
|
<!--body content start-->
|
|
<section class="body-content ">
|
|
<div class="page-content gray-bg">
|
|
<div class="container">
|
|
<div class="row">
|
|
|
|
|
|
<div class="col- 12 ">
|
|
|
|
|
|
<div class="heading-title-alt text-center">
|
|
<h3 class="text-uppercase">Contact</h3>
|
|
|
|
</div>
|
|
<p style="text-align: justify;">Get in touch with Miss Nation Hostess Agency to book professional hostesses, ushers, and event support staff for your next corporate event, exhibition, or brand activation.</p>
|
|
|
|
<div class="col-text-1 text-normal element-top-20 element-bottom-20" data-os-animation="none" data-os-animation-delay="0s">
|
|
<h2 style="text-align: center; color: #333;">Email:</h2>
|
|
<p style="text-align: center; color: #333;">event@missnation.com</p>
|
|
<h2 style="text-align: center; color: #333;">Phone:</h2>
|
|
<p style="text-align: center; color: #333;">+971 58 594 5098</p>
|
|
</div>
|
|
|
|
</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 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");
|
|
}
|
|
}
|
|
}
|