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

69 lines
2.7 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 "/hostess"
@layout HostessLayout
@using MissNationSharedUI.Shared.Components.Layout
<PageTitle>Premium Hostess Services in UAE | Miss Nation Hostess Agency</PageTitle>
<HeadContent>
<meta name="description" content="Miss Nation Hostess Agency offers professional hostess services in the UAE for corporate events, exhibitions, and brand activations. Book top-tier event support now.">
<meta name="keywords" content="hostess services UAE, corporate event hostesses, exhibition support, brand promotion, event management, VIP event staff, professional ushers">
</HeadContent>
<!--body content start-->
<section class="body-content ">
<HostessHeroComponent></HostessHeroComponent>
<div class="page-content">
<div class="container">
<div class="heading-title-alt text-center">
<h3 class="text-uppercase">Welcome</h3>
<span class="text-uppercase">Introduction of our services</span>
</div>
<div class="row" style="margin-left:1px; margin-right:1px;">
<div class="col-xs-12">
<p style="text-align: justify;">
We strive to be the trusted partner of choice for businesses looking to create lasting impressions at their events, offering personalized, reliable, and attentive service every step of the way. By carefully selecting and training our team of hostesses, we aim to add value to each event we support, ensuring flawless execution and a professional representation of your brand.
</p>
<p style="text-align: justify;">We aim to create seamless and unforgettable experience by providing top-tier talent, personalized service, and attention to detail.</p>
<p style="text-align: justify;">
Whether its a corporate event, luxury brand promotion, activation, our team is dedicated to enhancing your events atmosphere and leaving a lasting impression.
</p>
</div>
</div>
<QuoteLeftComponent></QuoteLeftComponent>
</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");
}
}
}