2025 updates
|
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- https://go.microsoft.com/fwlink/?LinkID=208121. -->
|
||||
<Project>
|
||||
<PropertyGroup>
|
||||
<DeleteExistingFiles>true</DeleteExistingFiles>
|
||||
<ExcludeApp_Data>false</ExcludeApp_Data>
|
||||
<LaunchSiteAfterPublish>true</LaunchSiteAfterPublish>
|
||||
<LastUsedBuildConfiguration>Release</LastUsedBuildConfiguration>
|
||||
<LastUsedPlatform>Any CPU</LastUsedPlatform>
|
||||
<PublishProvider>FileSystem</PublishProvider>
|
||||
<PublishUrl>D:\REPOS\MANGO\Publish\MissNationPublishNEW</PublishUrl>
|
||||
<WebPublishMethod>FileSystem</WebPublishMethod>
|
||||
<_TargetId>Folder</_TargetId>
|
||||
<SiteUrlToLaunchAfterPublish />
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<ProjectGuid>fcd7f411-3582-4806-9400-a421fdc0ff7f</ProjectGuid>
|
||||
<SelfContained>false</SelfContained>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk.Razor">
|
||||
<Project Sdk="Microsoft.NET.Sdk.Razor">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
|
|
|
|||
|
|
@ -46,6 +46,11 @@
|
|||
Miss Nation FZE LLC
|
||||
</NavLink>
|
||||
</li>
|
||||
<li>
|
||||
<NavLink href="hostess" @onclick="() => NavigateTo(HostessUrl, true)">
|
||||
Hostess
|
||||
</NavLink>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
|
@ -74,6 +79,7 @@
|
|||
public string TermsUrl = "/terms";
|
||||
public string PrivacyUrl = "/privacy";
|
||||
public string CorpUrl = "/corporateabout";
|
||||
public string HostessUrl = "/hostess";
|
||||
|
||||
private void NavigateTo(string url, bool forceReload)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -46,6 +46,11 @@
|
|||
Corporation
|
||||
</NavLink>
|
||||
</li>
|
||||
<li>
|
||||
<NavLink href="hostess" @onclick="() => NavigateTo(HostessUrl, true)">
|
||||
Hostess
|
||||
</NavLink>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
|
@ -74,6 +79,7 @@
|
|||
public string TermsUrl = "/terms";
|
||||
public string PrivacyUrl = "/privacy";
|
||||
public string CorpUrl = "/corporateabout";
|
||||
public string HostessUrl = "/hostess";
|
||||
|
||||
private void NavigateTo(string url, bool forceReload)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -0,0 +1,89 @@
|
|||
<footer id="footer" class="dark">
|
||||
<div class="primary-footer">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-md-3">
|
||||
|
||||
<img class="retina" src="_content/MissNationSharedUI/assets/img/logohotel1.png" alt="" />
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<div class="col-md-3">
|
||||
|
||||
<ul class="f-list">
|
||||
<li>
|
||||
<NavLink @onclick="() => NavigateTo(ApplyUrl, true)">
|
||||
Join our contest!
|
||||
</NavLink>
|
||||
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<NavLink @onclick="() => NavigateTo(TermsUrl, true)">
|
||||
Terms & Conditions
|
||||
</NavLink>
|
||||
</li>
|
||||
<li>
|
||||
<NavLink @onclick="() => NavigateTo(PrivacyUrl, true)">
|
||||
Privacy Policy
|
||||
</NavLink>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-md-3">
|
||||
|
||||
<ul class="f-list">
|
||||
|
||||
<li>
|
||||
<NavLink href="corporatecontact">
|
||||
Contact
|
||||
</NavLink>
|
||||
</li>
|
||||
<li>
|
||||
<NavLink @onclick="() => NavigateTo(CorpUrl, false)">
|
||||
Miss Nation FZE LLC
|
||||
</NavLink>
|
||||
</li>
|
||||
<li>
|
||||
<NavLink href="hostess" @onclick="() => NavigateTo(HostessUrl, true)">
|
||||
Hostess
|
||||
</NavLink>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="secondary-footer">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-md-6">
|
||||
<span class="m-top-10">Copyright 2021-2024 MissNation, created by <a href="https://aycode.com/" class="f-link" target="_blank">AYCode</a> | All Rights Reserved</span>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
@code {
|
||||
|
||||
|
||||
[Inject]
|
||||
NavigationManager NavigationManager { get; set; }
|
||||
|
||||
public string ApplyUrl = "/apply";
|
||||
public string TermsUrl = "/terms";
|
||||
public string PrivacyUrl = "/privacy";
|
||||
public string CorpUrl = "/corporateabout";
|
||||
public string HostessUrl = "/hostess";
|
||||
|
||||
private void NavigateTo(string url, bool forceReload)
|
||||
{
|
||||
|
||||
NavigationManager.NavigateTo(url, forceReload);
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,25 @@
|
|||
<!--hero section-->
|
||||
@* <div class="banner-state vertical-align banner-p filtered parallax" style="padding-top: 60px; height: auto; background-image: url('_content/MissNationSharedUI/assets/img/hostess/hostesshero.jpg') !important;"> *@
|
||||
<div class="banner-state vertical-align banner-p filtered parallax" style="padding-top: 60px; padding-bottom:30px; height: auto; background-color: #222; background-image: unset !important;">
|
||||
<div class="container-fluid">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
<div class="banner-title">
|
||||
<p style="text-align: justify;">
|
||||
Miss Nation Hostess Agency provides premium hostess services in the UAE for corporate events, VIP gatherings, exhibitions, activations, brand promotions, and conferences. Our experienced team ensures seamless event execution, leaving a lasting impression on guests.
|
||||
</p>
|
||||
<p style="text-align: justify;">With a focus on professionalism, attention to detail, and personalized solutions, we help brands create unforgettable experiences. Whether you need hostesses, ushers, or event management support, we are committed to excellence in every aspect.</p>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!--hero section-->
|
||||
|
||||
@code {
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,35 @@
|
|||
@inherits LayoutComponentBase
|
||||
@using System.Runtime.InteropServices.JavaScript
|
||||
@using MissNationSharedUI.Shared.Components.Layout
|
||||
|
||||
<!-- preloader start>
|
||||
<div id="tb-preloader">
|
||||
<div class="tb-preloader-wave"></div>
|
||||
</div>
|
||||
< preloader end -->
|
||||
|
||||
|
||||
<div class="wrapper">
|
||||
<!--div class="page"-->
|
||||
|
||||
|
||||
<main>
|
||||
<!--div class="top-row px-4">
|
||||
<a href="https://learn.microsoft.com/aspnet/core/" target="_blank">About</a>
|
||||
</div-->
|
||||
<HostessNavbarComponent/>
|
||||
<article class="content gray-bg">
|
||||
@Body
|
||||
</article>
|
||||
|
||||
<HostessFooterComponent/>
|
||||
|
||||
</main>
|
||||
</div>
|
||||
|
||||
@code {
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,77 @@
|
|||
.page {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
main {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.sidebar {
|
||||
background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
|
||||
}
|
||||
|
||||
.top-row {
|
||||
background-color: #f7f7f7;
|
||||
border-bottom: 1px solid #d6d5d5;
|
||||
justify-content: flex-end;
|
||||
height: 3.5rem;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.top-row ::deep a, .top-row ::deep .btn-link {
|
||||
white-space: nowrap;
|
||||
margin-left: 1.5rem;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.top-row ::deep a:hover, .top-row ::deep .btn-link:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.top-row ::deep a:first-child {
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
@media (max-width: 640.98px) {
|
||||
.top-row {
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.top-row ::deep a, .top-row ::deep .btn-link {
|
||||
margin-left: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 641px) {
|
||||
.page {
|
||||
flex-direction: row;
|
||||
}
|
||||
|
||||
.sidebar {
|
||||
width: 250px;
|
||||
height: 100vh;
|
||||
position: sticky;
|
||||
top: 0;
|
||||
}
|
||||
|
||||
.top-row {
|
||||
position: sticky;
|
||||
top: 0;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.top-row.auth ::deep a:first-child {
|
||||
flex: 1;
|
||||
text-align: right;
|
||||
width: 0;
|
||||
}
|
||||
|
||||
.top-row, article {
|
||||
/*adding-left: 2rem !important;
|
||||
padding-right: 1.5rem !important;*/
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,76 @@
|
|||
<header class="l-header">
|
||||
|
||||
<div class="l-navbar l-navbar_expand l-navbar_t-primary l-navbar_s-center js-navbar-sticky ">
|
||||
<div class="container-fluid">
|
||||
<nav class="menuzord js-primary-navigation poppins" role="navigation" aria-label="Primary Navigation">
|
||||
|
||||
<!--logo start-->
|
||||
|
||||
<a class="logo-brand" onclick="@NavigateHome">
|
||||
|
||||
<img class="retina" src="_content/MissNationSharedUI/assets/img/hostess/hostesslogo1.png" alt="Massive">
|
||||
|
||||
</a>
|
||||
|
||||
<!--logo end-->
|
||||
<!--mega menu start-->
|
||||
<ul class="menuzord-menu menuzord-right c-nav_s-standard">
|
||||
<li class="active">
|
||||
<NavLink class="text-white" href="hostess">
|
||||
Hostess home
|
||||
</NavLink>
|
||||
</li>
|
||||
<li class="active">
|
||||
<NavLink class="text-white" href="hostessabout">
|
||||
About
|
||||
</NavLink>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<NavLink class="text-white" href="hostessservices">
|
||||
Services
|
||||
</NavLink>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<NavLink class="text-white" href="hostesscontact">
|
||||
Contact
|
||||
</NavLink>
|
||||
</li>
|
||||
|
||||
|
||||
<li>
|
||||
<a href="https://www.facebook.com/missnationglobal/" class="text-white" style=" display: inline-block">
|
||||
<i class="fa fa-facebook"></i>
|
||||
</a>
|
||||
|
||||
<a href="https://www.instagram.com/missnation/" class="text-white" style="display: inline-block">
|
||||
<i class="fa fa-instagram"></i>
|
||||
</a>
|
||||
|
||||
<a href="https://www.youtube.com/channel/UC-na-dYxv5d4WncYg2akutQ" class="text-white" style="display: inline-block">
|
||||
<i class="fa fa-youtube"></i>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
|
||||
|
||||
</nav>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</header>
|
||||
|
||||
@code {
|
||||
[Inject]
|
||||
NavigationManager NavigationManager { get; set; }
|
||||
|
||||
private void NavigateHome()
|
||||
{
|
||||
var url = "/";
|
||||
NavigationManager.NavigateTo(url, true);
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
body {
|
||||
}
|
||||
|
||||
.text-white {
|
||||
color: #fff !important;
|
||||
}
|
||||
|
|
@ -7,69 +7,69 @@
|
|||
<!--logo start-->
|
||||
|
||||
<NavLink href="/" class="logo-brand">
|
||||
|
||||
|
||||
<img class="retina" src="_content/MissNationSharedUI/assets/img/logo1.png" alt="Massive">
|
||||
|
||||
</NavLink>
|
||||
|
||||
|
||||
</NavLink>
|
||||
|
||||
<!--logo end-->
|
||||
<!--mega menu start-->
|
||||
<ul class="menuzord-menu menuzord-right c-nav_s-standard">
|
||||
<li class="active">
|
||||
<NavLink href="apply">
|
||||
Apply
|
||||
</NavLink>
|
||||
</li>
|
||||
Apply
|
||||
</NavLink>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<NavLink href="gallery">
|
||||
Gallery
|
||||
</NavLink>
|
||||
</li>
|
||||
<NavLink href="hostess" @onclick="() => HandleClickForced(hostessUrl)">
|
||||
Hostess
|
||||
</NavLink>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<NavLink href="contact">
|
||||
Contact
|
||||
</NavLink>
|
||||
</li>
|
||||
Contact
|
||||
</NavLink>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<NavLink href="help">
|
||||
FAQ
|
||||
</NavLink>
|
||||
</li>
|
||||
FAQ
|
||||
</NavLink>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<NavLink href="login">
|
||||
Log in
|
||||
</NavLink>
|
||||
</li>
|
||||
@* <li>
|
||||
@* <li>
|
||||
<NavLink href="profile">
|
||||
Profile
|
||||
</NavLink>
|
||||
</li> *@
|
||||
@* <li>
|
||||
@* <li>
|
||||
<NavLink href="feed">
|
||||
Feed
|
||||
</NavLink>
|
||||
</li> *@
|
||||
<li>
|
||||
<a href="https://www.facebook.com/missnationglobal/" style=" display: inline-block">
|
||||
<i class="fa fa-facebook"></i>
|
||||
<i class="fa fa-facebook"></i>
|
||||
</a>
|
||||
|
||||
|
||||
<a href="https://www.instagram.com/missnation/" style="display: inline-block">
|
||||
<i class="fa fa-instagram"></i>
|
||||
</a>
|
||||
|
||||
<a href="https://www.youtube.com/channel/UC-na-dYxv5d4WncYg2akutQ" style="display: inline-block">
|
||||
<i class="fa fa-youtube"></i>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<a href="https://www.youtube.com/channel/UC-na-dYxv5d4WncYg2akutQ" style="display: inline-block">
|
||||
<i class="fa fa-youtube"></i>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
|
||||
|
||||
|
||||
</nav>
|
||||
|
||||
|
|
@ -83,8 +83,15 @@
|
|||
[Inject]
|
||||
NavigationManager NavigationManager { get; set; }
|
||||
|
||||
private string hostessUrl = "hostess";
|
||||
|
||||
private void NavigateTo(string url)
|
||||
{
|
||||
NavigationManager.NavigateTo(url);
|
||||
}
|
||||
|
||||
private void HandleClickForced(string url)
|
||||
{
|
||||
NavigationManager.NavigateTo("hostess", true);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,22 +1,44 @@
|
|||
<div class="page-content gray-bg">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
|
||||
<div class="col-md-6">
|
||||
<div class="responsive-img ">
|
||||
<img class="filtered" src="_content/MissNationSharedUI/assets/img/kidsmom.jpg" alt="">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="zoom-wrapper">
|
||||
<img class="image-zoom" src="_content/MissNationSharedUI/assets/img/hostess/hostesshome_2.jpg" alt="Image">
|
||||
</div>
|
||||
|
||||
<!--div class="responsive-img">
|
||||
<img class="responsive-img @AddiontionalCssClass" style="width:100%" src="_content/MissNationSharedUI/assets/img/kidsmom.png" alt="">
|
||||
</div-->
|
||||
</div>
|
||||
<div class="col-md-6 ">
|
||||
<div class="heading-title-alt m-top-50 inline-block">
|
||||
<h2 class="text-uppercase">
|
||||
Our mission
|
||||
What we can offer:
|
||||
</h2>
|
||||
</div>
|
||||
<div class="">
|
||||
<p>
|
||||
❝Our goal is to choose a Queen who can serve as an Idol to the younger generations, her Nation and the entire World.❞
|
||||
</p>
|
||||
<div class="">
|
||||
<ul>
|
||||
<li>
|
||||
Professional hostesses
|
||||
</li>
|
||||
<li>
|
||||
Ushers
|
||||
</li>
|
||||
<li>
|
||||
Exhibition support
|
||||
</li>
|
||||
<li>
|
||||
Guest registration
|
||||
</li>
|
||||
<li>
|
||||
Brand promotion
|
||||
</li>
|
||||
<li>
|
||||
Event management
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<!-- <a href="#" class="btn btn-medium btn-light-solid "> Shop Now</a>-->
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@
|
|||
<div class="col-md-6">
|
||||
|
||||
<div class="zoom-wrapper">
|
||||
<img class="image-zoom" src="_content/MissNationSharedUI/assets/img/kidsmom.png" alt="Image">
|
||||
<img class="image-zoom" src="_content/MissNationSharedUI/assets/img/home.png" alt="Image">
|
||||
</div>
|
||||
|
||||
<!--div class="responsive-img">
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@
|
|||
<p>Email: testmail@yourdomain.com</p>
|
||||
</address-->
|
||||
<div>
|
||||
<p class="apply-text">
|
||||
<p class="apply-text" style="text-align: justify;">
|
||||
Age limits: 21-35 years
|
||||
Height: approximately 165-190 cm (no strict rules apply; it is important that contestants carry national beauty - the ideal height can vary from nation to nation)
|
||||
Naturalness
|
||||
|
|
|
|||
|
|
@ -0,0 +1,73 @@
|
|||
@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");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,62 @@
|
|||
@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");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,68 @@
|
|||
@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 event’s 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");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,72 @@
|
|||
@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");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -2,7 +2,9 @@
|
|||
@using MissNationSharedUI.Shared.Components.Layout
|
||||
|
||||
<PageTitle>Home</PageTitle>
|
||||
|
||||
<HeadContent>
|
||||
<meta name="description" content="Welcome to Miss Nation">
|
||||
</HeadContent>
|
||||
|
||||
|
||||
|
||||
|
|
@ -11,27 +13,6 @@
|
|||
<SuperHeroComponent />
|
||||
<MyTitleComponent PageTitle="Welcome"></MyTitleComponent>
|
||||
<HeroComponent />
|
||||
<!--slider box-->
|
||||
<!--ads box-->
|
||||
<!--trendy product-->
|
||||
<!--parallax-->
|
||||
<!-- <div class="parallax-inner full-width float-left parallax-p">
|
||||
<div class="container ">
|
||||
<div class="row">
|
||||
<div class="heading-title-alt text-center m-bot-0 inline-block">
|
||||
<h1 class="text-uppercase light-txt">Our misson</h1>
|
||||
</p>
|
||||
<h4 class="text-uppercase light-txt">❝Our goal is to choose a Queen who can serve as an Idol to the younger generations, her Nation and the entire World.❞
|
||||
|
||||
</h4>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>-->
|
||||
<!--parallax-->
|
||||
|
||||
|
||||
<QuoteRightComponent AddiontionalCssClass="filtered"/>
|
||||
<SlidersComponent/>
|
||||
|
|
@ -39,7 +20,7 @@
|
|||
|
||||
|
||||
<!--subscribe-->
|
||||
<SubscriptionComponent/>
|
||||
@* <SubscriptionComponent/> *@
|
||||
<!--subscribe-->
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1271,6 +1271,9 @@ pre {
|
|||
.l-navbar_t-dark-trans {
|
||||
background: #222;
|
||||
}
|
||||
.l-navbar_t-primary {
|
||||
background: #c39a6b;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 769px) {
|
||||
|
|
@ -1348,6 +1351,9 @@ pre {
|
|||
.l-navbar_t-dark {
|
||||
background: #222;
|
||||
}
|
||||
.l-navbar_t-primary {
|
||||
background: #c49a6b;
|
||||
}
|
||||
.l-navbar_t-dark .menuzord-menu>li>a,
|
||||
.l-navbar_t-semi-trans .menuzord-menu>li>a,
|
||||
.l-navbar_t-dark-trans .menuzord-menu>li>a {
|
||||
|
|
@ -1386,6 +1392,9 @@ pre {
|
|||
.l-navbar_s-center.l-navbar_t-dark {
|
||||
border-top-color: #222;
|
||||
}
|
||||
.l-navbar_s-center.l-navbar_t-primary {
|
||||
border-top-color: #c49a6b;
|
||||
}
|
||||
.l-navbar_s-center .logo-brand {
|
||||
float: none;
|
||||
}
|
||||
|
|
@ -1440,6 +1449,9 @@ pre {
|
|||
.l-navbar_s-left.l-navbar_t-dark {
|
||||
background: #333;
|
||||
}
|
||||
.l-navbar_s-left.l-navbar_t-primary {
|
||||
background: #c49a6b;
|
||||
}
|
||||
.l-navbar_s-left .container,
|
||||
.l-navbar_s-left .container-fluid,
|
||||
.l-navbar_s-left .col-lg-1,
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 466 KiB After Width: | Height: | Size: 765 KiB |
|
After Width: | Height: | Size: 466 KiB |
|
After Width: | Height: | Size: 1.2 MiB |
|
After Width: | Height: | Size: 119 KiB |
|
After Width: | Height: | Size: 70 KiB |
|
After Width: | Height: | Size: 203 KiB |
|
After Width: | Height: | Size: 340 KiB |
|
After Width: | Height: | Size: 24 KiB |
|
Before Width: | Height: | Size: 38 KiB |
|
Before Width: | Height: | Size: 802 KiB |
|
Before Width: | Height: | Size: 494 KiB |
|
Before Width: | Height: | Size: 338 KiB After Width: | Height: | Size: 236 KiB |
|
Before Width: | Height: | Size: 918 KiB After Width: | Height: | Size: 596 KiB |
|
Before Width: | Height: | Size: 2.0 MiB After Width: | Height: | Size: 1.3 MiB |
|
Before Width: | Height: | Size: 1.9 MiB After Width: | Height: | Size: 593 KiB |