diff --git a/Resume/Pages/Home.razor b/Resume/Pages/Home.razor index ffebb30..9e61eaa 100644 --- a/Resume/Pages/Home.razor +++ b/Resume/Pages/Home.razor @@ -1,6 +1,7 @@ @page "/" @using Resume.Data +
Jonathan McCaffrey
diff --git a/Resume/Program.cs b/Resume/Program.cs index 743d337..9de8e51 100644 --- a/Resume/Program.cs +++ b/Resume/Program.cs @@ -1,6 +1,5 @@ using Microsoft.AspNetCore.Components.Web; using Microsoft.AspNetCore.Components.WebAssembly.Hosting; -using MudBlazor.Services; using Resume; var builder = WebAssemblyHostBuilder.CreateDefault(args); @@ -9,6 +8,5 @@ builder.RootComponents.Add("head::after"); builder.Services.AddScoped(sp => new HttpClient { BaseAddress = new Uri(builder.HostEnvironment.BaseAddress) }); -builder.Services.AddMudServices(); await builder.Build().RunAsync(); \ No newline at end of file diff --git a/Resume/Resume.csproj b/Resume/Resume.csproj index 448e865..6f16d3a 100644 --- a/Resume/Resume.csproj +++ b/Resume/Resume.csproj @@ -8,9 +8,9 @@ - - - + + + @@ -19,4 +19,8 @@ + + <_ContentIncludedByDefault Remove="wwwroot\sample-data\weather.json" /> + + diff --git a/Resume/_Imports.razor b/Resume/_Imports.razor index 6414cba..e7a059e 100644 --- a/Resume/_Imports.razor +++ b/Resume/_Imports.razor @@ -8,4 +8,4 @@ @using Microsoft.JSInterop @using Resume @using Resume.Layout -@using MudBlazor \ No newline at end of file + diff --git a/Resume/wwwroot/index.html b/Resume/wwwroot/index.html index 3da1eae..f83ffb0 100644 --- a/Resume/wwwroot/index.html +++ b/Resume/wwwroot/index.html @@ -11,7 +11,6 @@ - @@ -30,7 +29,6 @@ 🗙
- diff --git a/Resume/wwwroot/sample-data/weather.json b/Resume/wwwroot/sample-data/weather.json deleted file mode 100644 index b745973..0000000 --- a/Resume/wwwroot/sample-data/weather.json +++ /dev/null @@ -1,27 +0,0 @@ -[ - { - "date": "2022-01-06", - "temperatureC": 1, - "summary": "Freezing" - }, - { - "date": "2022-01-07", - "temperatureC": 14, - "summary": "Bracing" - }, - { - "date": "2022-01-08", - "temperatureC": -13, - "summary": "Freezing" - }, - { - "date": "2022-01-09", - "temperatureC": -16, - "summary": "Balmy" - }, - { - "date": "2022-01-10", - "temperatureC": -2, - "summary": "Chilly" - } -]