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

174 lines
8.9 KiB
Plaintext

@page "/help"
@using MissNationSharedUI.Shared.Components.Layout
<PageTitle>Help</PageTitle>
<MyTitleComponent PageTitle="Help"></MyTitleComponent>
<!--body content start-->
<div class="container">
<div class="row">
<!--title-->
@* <div class="panel-body" style="border-color: rgb(195, 154, 107);">
<h1 class="text-center element-top-20 element-bottom-20 text-normal normal regular" style="color: #fff">Contest schedule</h1>
<div class="divider-border divider-border-center element-top-20 element-bottom-40 os-animation animated fadeIn" data-os-animation="fadeIn" data-os-animation-delay="0.1s" style="height: 3px; animation-delay: 0.1s;">
<div class="divider-border-inner" style="width:60px;"></div>
</div>
<div class="col-text-1 text-normal element-top-20 element-bottom-20" data-os-animation="none" data-os-animation-delay="0s">
<h2 style="color: #333">The Miss Nation Global events Calendar goes as follows:</h2>
<ul style="color: #333;list-style: none; padding:20px !important">
<li>
the local application periods and local competitions are due to be finalized till 30th of September 2020.( including several local crowning events )
</li>
<li>in the period from the middle of October till the first part of December the international boot camp, online voting and crowning event takes place.</li>
</ul>
<p style="color:#333">
During this period the main source of information for our audience will be the Miss Nation Tv, giving you up to date content 0/24.
As a novelty the applicants can upload visual materials on the www.missnation.com/apply page from themselves. So they will be promoted like this since this will be aired on Miss Nation TV also.
</p>
</div>
<!-- </div>
<a href="#" class="btn btn-medium btn-theme-color "> Email your Question </a>
<a href="#" class="btn btn-medium btn-dark-solid "> Send us a Tweet </a>
</div>-->
</div> *@
<!--title-->
<div class="col-md-8 col-md-offset-2">
<div class="text-center" style="padding-top: 30px;">
<h3 class="text-uppercase">Frequently asked questions</h3>
</div>
<!-- accordion 2 start-->
<dl class="accordion">
<dt>
<a href=""> I have a small tattoo on my finger, if I have it removed, can I participate? </a>
</dt>
<dd>
<p style="color:#333">
Yes, you can apply, as you will not have any tattoos after that.
</p>
</dd>
<dt>
<a href=""> What is the winner prize?</a>
</dt>
<dd>
The Winner will receive the title Miss Nation 2020 and valuable prizes offered by the Sponsors.
</dd>
<dt>
<a href=""> I am from Saudi Arabia. Can I apply?</a>
</dt>
<dd>
Yes, you can apply on the folowing link <NavLink href="apply">https://localhost:7183/apply</NavLink>
</dd>
<dt>
<a href="">Where will be the contest in 2020? </a>
</dt>
<dd>
the contest is going to be in the United Arab Emirates.
</dd>
<dt>
<a href=""> How much do I need to pay for the application?</a>
</dt>
<dd>
The application is free.
</dd>
<dt>
<a href=""> What will happen if I win Miss Nation 2020?</a>
</dt>
<dd>
If you are the Miss Nation Queen 2020, you will be part of a one year campaign where you will be the face of our Sponsors and you will promote the #stayU message and the Miss Nation competition. At the end of your mandate you can get your Winner prizes.
</dd>
<dt>
<a href=""> Who is paying for the transportation and the hotel? The participant?</a>
</dt>
<dd>
Miss Nation covers all these costs.
</dd>
<dt>
<a href="">I had silicon, but I removed because it caused me medical problem. Can I apply?</a>
</dt>
<dd>
It's very sad to hear that. That is one of the reasons we want to call girls' attention to not to do any plastic surgeries. Yes, you can apply as you are natural again.
</dd>
<dt>
<a href=""> Who will be the jury?</a>
</dt>
<dd>
The members of the international Jury will go public after the end of the Boot Camp.
</dd>
<dt>
<a href=""> What are grooming charges?</a>
</dt>
<dd>
When a candidate is selected to participate in the competition, the grooming charges for the boot camp and the crowning event are covered by the organizers and their partners.
</dd>
<dt>
<a href=""> What is the vision and mission of Miss Nation?</a>
</dt>
<dd>
The Miss Nation contest is meant to find real natural beauties (no tattoos and plastic surgery is allowed on the contestants) who serve as an example
with their apperance and way of thinking - not only for their nations, but for the entire world.
Apart from the standard international criteria (height, physique, face, hair, smile, etc.) other aspects will be taken into consideration as well.
We put special emphasis on having contestants who have knowledge and pride relating their national traditions. All this is summarized in our #stayU campaign.
</dd>
<dt>
<a href="">The Miss Nation will be in Dubai again?</a>
</dt>
<dd>
The contest is going to be in the United Arab Emirates, including more cities. The main event, the crowning ceremony is going to be in Dubai.
</dd>
</dl>
<!-- accordion 2 end-->
</div>
</div>
</div>
<!--body content 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");
}
}
}