diff --git a/Components/Layout/AvatarMenu.razor b/Components/Layout/AvatarMenu.razor new file mode 100644 index 0000000..82ef6b3 --- /dev/null +++ b/Components/Layout/AvatarMenu.razor @@ -0,0 +1,78 @@ +@inject CustomAuthenticationStateProvider AuthStateProvider; +@inject State State; + + + + + @State.SelectedAddressName + +
+ Hey, @State.Name.
+ @State.SelectedAddressName +
+
+ + + + Omg.lol + +
+ Hey there.
+ Login? +
+
+
+ +@code { + public void changeAddress(AddressResponseData address) { + State.SelectedAddress = address; + } +} \ No newline at end of file diff --git a/Components/Layout/NavLinks.razor b/Components/Layout/NavLinks.razor new file mode 100644 index 0000000..acf4f7f --- /dev/null +++ b/Components/Layout/NavLinks.razor @@ -0,0 +1,16 @@ + + +
Status.lol
+
+ + +
Some.pics
+
+ + +
Eph.emer.al
+
+ + +
Now.garden
+
\ No newline at end of file diff --git a/Components/Layout/NavMenu.razor b/Components/Layout/NavMenu.razor index 1fc9cd4..8db7dcf 100644 --- a/Components/Layout/NavMenu.razor +++ b/Components/Layout/NavMenu.razor @@ -1,188 +1,14 @@ -@inject CustomAuthenticationStateProvider AuthStateProvider; -@inject State State; -