Skip to content

Commit

Permalink
Added page titles
Browse files Browse the repository at this point in the history
  • Loading branch information
dusty.shaw authored and dusty.shaw committed Dec 7, 2023
1 parent 2aa7015 commit 68a03c7
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 2 deletions.
2 changes: 2 additions & 0 deletions MusicBlazorApp/Pages/BrowseItems.razor
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
@inject NavigationManager NavManager;
@inject IConfiguration config;

<PageTitle>Browse Items</PageTitle>


<div class="row">
<div class="col-lg-2 col-md-3">
Expand Down
3 changes: 3 additions & 0 deletions MusicBlazorApp/Pages/Cart.razor
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@
@inject AuthenticationStateProvider auth;


<PageTitle>Your Cart</PageTitle>


@if (cartState.SelectedItems is not null && !NoUser)
{
@if (cartState.SelectedItems.Count == 0)
Expand Down
2 changes: 1 addition & 1 deletion MusicBlazorApp/Pages/ConfirmPurchase.razor
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
@inject NavigationManager NavManager;
@inject AuthenticationStateProvider auth;


<PageTitle>Order Confirmation</PageTitle>

@if (cartState.SelectedItems is not null)
{
Expand Down
2 changes: 2 additions & 0 deletions MusicBlazorApp/Pages/MyAccount.razor
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
@inject NavigationManager nav;
@inject UrlState urlState;

<PageTitle>My Account</PageTitle>

@if (Customer is not null)
{

Expand Down
1 change: 1 addition & 0 deletions MusicBlazorApp/Pages/RentInstrument.razor
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
@inject IHostEnvironment Environment;
@inject NavigationManager NavManager;

<PageTitle>Rent Item</PageTitle>

<style>
Expand Down
2 changes: 1 addition & 1 deletion MusicBlazorApp/Pages/RentRoom.razor
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
@inject AuthenticationStateProvider auth;
@inject NavigationManager NavManager;


<PageTitle>Rent a Room</PageTitle>

<div class="container col-lg-6">
<div class="image-stack">
Expand Down
2 changes: 2 additions & 0 deletions MusicBlazorApp/Pages/ViewItem.razor
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@
@inject UrlState urlState;


<PageTitle>View Item</PageTitle>

@if (Item is not null)
{
@if (ShowReviewPopup)
Expand Down

0 comments on commit 68a03c7

Please sign in to comment.