diff --git a/MissNationBlazorWASM/Server/Properties/PublishProfiles/FolderProfile1.pubxml b/MissNationBlazorWASM/Server/Properties/PublishProfiles/FolderProfile1.pubxml new file mode 100644 index 0000000..295528b --- /dev/null +++ b/MissNationBlazorWASM/Server/Properties/PublishProfiles/FolderProfile1.pubxml @@ -0,0 +1,19 @@ + + + + + true + false + true + Release + Any CPU + FileSystem + D:\REPOS\MANGO\Publish\MissNationPublishNEW + FileSystem + <_TargetId>Folder + + net8.0 + fcd7f411-3582-4806-9400-a421fdc0ff7f + false + + \ No newline at end of file diff --git a/MissNationSharedUI/MissNationSharedUI.csproj b/MissNationSharedUI/MissNationSharedUI.csproj index da800fa..374ec2a 100644 --- a/MissNationSharedUI/MissNationSharedUI.csproj +++ b/MissNationSharedUI/MissNationSharedUI.csproj @@ -1,4 +1,4 @@ - + net8.0 diff --git a/MissNationSharedUI/Shared/Components/Layout/CorporateFooterComponent.razor b/MissNationSharedUI/Shared/Components/Layout/CorporateFooterComponent.razor index cd48c0c..c8c2b2b 100644 --- a/MissNationSharedUI/Shared/Components/Layout/CorporateFooterComponent.razor +++ b/MissNationSharedUI/Shared/Components/Layout/CorporateFooterComponent.razor @@ -46,6 +46,11 @@ Miss Nation FZE LLC +
  • + + Hostess + +
  • @@ -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) { diff --git a/MissNationSharedUI/Shared/Components/Layout/FooterComponent.razor b/MissNationSharedUI/Shared/Components/Layout/FooterComponent.razor index 692f600..97abf04 100644 --- a/MissNationSharedUI/Shared/Components/Layout/FooterComponent.razor +++ b/MissNationSharedUI/Shared/Components/Layout/FooterComponent.razor @@ -46,6 +46,11 @@ Corporation +
  • + + Hostess + +
  • @@ -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) { diff --git a/MissNationSharedUI/Shared/Components/Layout/HostessFooterComponent.razor b/MissNationSharedUI/Shared/Components/Layout/HostessFooterComponent.razor new file mode 100644 index 0000000..c8c2b2b --- /dev/null +++ b/MissNationSharedUI/Shared/Components/Layout/HostessFooterComponent.razor @@ -0,0 +1,89 @@ +
    + +
    + +@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); + } +} diff --git a/MissNationSharedUI/Shared/Components/Layout/HostessHeroComponent.razor b/MissNationSharedUI/Shared/Components/Layout/HostessHeroComponent.razor new file mode 100644 index 0000000..ed410ef --- /dev/null +++ b/MissNationSharedUI/Shared/Components/Layout/HostessHeroComponent.razor @@ -0,0 +1,25 @@ + +@*