MissnationBlazor/MissNationSharedUI/Shared/Components/Pages/HostessServices.razor

73 lines
2.9 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

@page "/hostessservices"
@layout HostessLayout
@using MissNationSharedUI.Shared.Components.Layout
<PageTitle>Hostess & Event Staffing Services in UAE | Miss Nation</PageTitle>
<HeadContent>
<meta name="description" content="Discover our professional hostess, usher, and event management services for corporate events, exhibitions, and brand promotions in the UAE.">
<meta name="keywords" content="hostess services, event staffing UAE, corporate event support, exhibition hostesses, brand promotion, professional ushers, guest registration">
</HeadContent>
<section class="body-content">
<!--tabs-->
<div class="page-content">
<div class="container">
<div class="row">
<div class="col-md-12">
<!--tabs line start-->
<p style="text-align: justify;">At Miss Nation Hostess Agency, we offer a range of professional event staffing solutions tailored to enhance your brand presence and ensure smooth event execution.</p>
<div class="">
<ul>
<li>
Professional Hostesses Trained, multilingual hostesses for corporate and VIP events.
</li>
<li>
Ushers Courteous, well-groomed ushers to manage guest flow and seating.
</li>
<li>
Exhibition Support Professional staff to engage visitors and represent your brand.
</li>
<li>
Guest Registration Efficient management of guest check-ins and data collection.
</li>
<li>
Brand Promotion Expert promoters to drive brand awareness and engagement.
</li>
<li>
Event Management End-to-end planning and execution to ensure flawless events.
</li>
</ul>
<!-- <a href="#" class="btn btn-medium btn-light-solid "> Shop Now</a>-->
</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");
}
}
}