diff --git a/README.md b/README.md index 2065705..978e2da 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,10 @@ # Steeltoe Main Site - The site was built using [Blazor](https://docs.microsoft.com/en-us/aspnet/core/blazor/) in Visual Studio. + The site was built using [Blazor](https://docs.microsoft.com/aspnet/core/blazor/) in Visual Studio. ## Install Dependencies -Requires .NET Core SDK 8.0 -```powershell -PS> dotnet new -i Microsoft.AspNetCore.Blazor.Templates -``` +Requires .NET 8.0+ SDK ## Local testing of Steeltoe site @@ -16,7 +13,8 @@ PS> dotnet new -i Microsoft.AspNetCore.Blazor.Templates PS> cd src/Client ``` -2. Run the application with the `watch` command. So as changes are made in Visual Studio, the site will refresh. +1. Run the application with the `watch` command. So as changes are made, the site will refresh. + ```powershell PS> dotnet watch run diff --git a/src/Client/Components/App.razor b/src/Client/Components/App.razor index 9be5a11..aff90e2 100644 --- a/src/Client/Components/App.razor +++ b/src/Client/Components/App.razor @@ -1,3 +1,4 @@ +@using Steeltoe.Client.Components.Layout @inject IHostEnvironment HostEnvironment @@ -5,66 +6,55 @@ - + - - + - - - - - - - - - - - - - - - - - - - - - - - Steeltoe OSS - - + + + + + + + + + + + + + - - - - + + + + - -
- @if (HostEnvironment.IsProduction()) - { - An error has occurred. - } - else - { - An unhandled exception occurred. See browser dev tools for details. - } - Reload - 🗙 -
- - - - + +
+ @if (HostEnvironment.IsProduction()) + { + An error has occurred. + } + else + { + An unhandled exception occurred. See browser dev tools for details. + } + Reload + 🗙 +
+ + + + + + diff --git a/src/Client/Components/Banner.razor b/src/Client/Components/Banner.razor index 83956ad..6eb1182 100644 --- a/src/Client/Components/Banner.razor +++ b/src/Client/Components/Banner.razor @@ -1,28 +1,20 @@ -