diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..ba66cc5 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "dotnet.defaultSolution": "Interlinked.sln" +} \ No newline at end of file diff --git a/src/Interlinked.Core/Pages/Index.razor b/src/Interlinked.Core/Pages/Index.razor index 4b1bf7c..02ca407 100644 --- a/src/Interlinked.Core/Pages/Index.razor +++ b/src/Interlinked.Core/Pages/Index.razor @@ -21,7 +21,7 @@ { public double Latitude { get; set; } public double Longitude { get; set; } - public string Name { get; set; } + public string Name { get; set; } = default!; } private List Cities = new List { new City { Latitude = 34.060620, Longitude = -118.330491, Name="California" }, diff --git a/src/Interlinked.Core/Pages/PeopleTable.razor b/src/Interlinked.Core/Pages/PeopleTable.razor new file mode 100644 index 0000000..007fdab --- /dev/null +++ b/src/Interlinked.Core/Pages/PeopleTable.razor @@ -0,0 +1,34 @@ +@page "/peopletable" + +

Employee Information

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameSurnameCityCountryProficiencies
JohnDoeNew YorkUSAWeb Development
JaneSmithLos AngelesUSAGraphic Design
MariaGarciaMadridSpainData Analysis
\ No newline at end of file diff --git a/src/Interlinked.Core/Pages/UserProfile.razor b/src/Interlinked.Core/Pages/UserProfile.razor index 4abfa97..e5a363a 100644 --- a/src/Interlinked.Core/Pages/UserProfile.razor +++ b/src/Interlinked.Core/Pages/UserProfile.razor @@ -6,21 +6,32 @@ private string FullName = "meow uwu"; private string Bio = "Software Developer"; private List Skills = new List { "C#", "ASP.NET Core", "Blazor" }; + private string aboutme = "lorum ipsum, lorum ipsum, lorum ipsum, lorum ipsum, lorum ipsum, lorum ipsum."; }