From 886e9e4219640432f01abc557612ae877e74debe Mon Sep 17 00:00:00 2001 From: Adam Date: Mon, 7 Apr 2025 15:23:40 +0200 Subject: [PATCH] 2025 updates --- .../PublishProfiles/FolderProfile1.pubxml | 19 ++++ MissNationSharedUI/MissNationSharedUI.csproj | 2 +- .../Layout/CorporateFooterComponent.razor | 6 ++ .../Components/Layout/FooterComponent.razor | 6 ++ .../Layout/HostessFooterComponent.razor | 89 ++++++++++++++++++ .../Layout/HostessHeroComponent.razor | 25 +++++ .../Components/Layout/HostessLayout.razor | 35 +++++++ .../Components/Layout/HostessLayout.razor.css | 77 +++++++++++++++ .../Layout/HostessNavbarComponent.razor | 76 +++++++++++++++ .../Layout/HostessNavbarComponent.razor.css | 6 ++ .../Components/Layout/NavbarComponent.razor | 61 ++++++------ .../Layout/QuoteLeftComponent.razor | 40 ++++++-- .../Layout/QuoteRightComponent.razor | 2 +- .../Shared/Components/Pages/Apply.razor | 2 +- .../Components/Pages/HostessAbout.razor | 73 ++++++++++++++ .../Components/Pages/HostessContact.razor | 62 ++++++++++++ .../Components/Pages/HostessIndex.razor | 68 +++++++++++++ .../Components/Pages/HostessServices.razor | 72 ++++++++++++++ .../Shared/Components/Pages/Index.razor | 27 +----- .../wwwroot/assets/css/style.css | 12 +++ MissNationSharedUI/wwwroot/assets/img/04.jpg | Bin 477470 -> 783673 bytes .../wwwroot/assets/img/04_b.jpg | Bin 0 -> 477470 bytes .../wwwroot/assets/img/home.png | Bin 0 -> 1280690 bytes .../assets/img/hostess/hostesshero.jpg | Bin 0 -> 121454 bytes .../assets/img/hostess/hostesshome.jpg | Bin 0 -> 71366 bytes .../assets/img/hostess/hostesshome_.jpg | Bin 0 -> 207465 bytes .../assets/img/hostess/hostesshome_2.jpg | Bin 0 -> 347636 bytes .../assets/img/hostess/hostesslogo1.png | Bin 0 -> 24472 bytes .../assets/img/hostess/logo1-Recovered.psd | Bin 0 -> 197655 bytes .../wwwroot/assets/img/kidsmom.jpg | Bin 39006 -> 0 bytes .../wwwroot/assets/img/kidsmom.png | Bin 821354 -> 0 bytes .../wwwroot/assets/img/kidsmom_b.jpg | Bin 505992 -> 0 bytes .../assets/img/portfolio/masonry/12.jpg | Bin 346313 -> 241530 bytes .../assets/img/portfolio/masonry/2_b.jpg | Bin 939778 -> 610025 bytes .../assets/img/portfolio/masonry/5.jpg | Bin 2073247 -> 1313884 bytes .../assets/img/portfolio/masonry/7.jpg | Bin 2007285 -> 606870 bytes 36 files changed, 698 insertions(+), 62 deletions(-) create mode 100644 MissNationBlazorWASM/Server/Properties/PublishProfiles/FolderProfile1.pubxml create mode 100644 MissNationSharedUI/Shared/Components/Layout/HostessFooterComponent.razor create mode 100644 MissNationSharedUI/Shared/Components/Layout/HostessHeroComponent.razor create mode 100644 MissNationSharedUI/Shared/Components/Layout/HostessLayout.razor create mode 100644 MissNationSharedUI/Shared/Components/Layout/HostessLayout.razor.css create mode 100644 MissNationSharedUI/Shared/Components/Layout/HostessNavbarComponent.razor create mode 100644 MissNationSharedUI/Shared/Components/Layout/HostessNavbarComponent.razor.css create mode 100644 MissNationSharedUI/Shared/Components/Pages/HostessAbout.razor create mode 100644 MissNationSharedUI/Shared/Components/Pages/HostessContact.razor create mode 100644 MissNationSharedUI/Shared/Components/Pages/HostessIndex.razor create mode 100644 MissNationSharedUI/Shared/Components/Pages/HostessServices.razor create mode 100644 MissNationSharedUI/wwwroot/assets/img/04_b.jpg create mode 100644 MissNationSharedUI/wwwroot/assets/img/home.png create mode 100644 MissNationSharedUI/wwwroot/assets/img/hostess/hostesshero.jpg create mode 100644 MissNationSharedUI/wwwroot/assets/img/hostess/hostesshome.jpg create mode 100644 MissNationSharedUI/wwwroot/assets/img/hostess/hostesshome_.jpg create mode 100644 MissNationSharedUI/wwwroot/assets/img/hostess/hostesshome_2.jpg create mode 100644 MissNationSharedUI/wwwroot/assets/img/hostess/hostesslogo1.png create mode 100644 MissNationSharedUI/wwwroot/assets/img/hostess/logo1-Recovered.psd delete mode 100644 MissNationSharedUI/wwwroot/assets/img/kidsmom.jpg delete mode 100644 MissNationSharedUI/wwwroot/assets/img/kidsmom.png delete mode 100644 MissNationSharedUI/wwwroot/assets/img/kidsmom_b.jpg 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 @@ + +@*