StephMode / art-gallery-app

0 stars 0 forks source link

#03 User Story 3: Separate Pages and Navigation Bar #3

Open StephMode opened 15 hours ago

StephMode commented 15 hours ago

Value Proposition

As an art enthusiast

I want to be able to switch between the spotlight and list view

so that I can navigate the app easier.

Acceptance Criteria

[ ] A navigation link labeled "Spotlight" is displayed [ ] A navigation link labeled "Pieces" is displayed [ ] Clicking "Spotlight" shows the SpotlightPage [ ] Clicking "Pieces" shows the ArtPiecesPage

Tasks

[ ] Move the data fetching logic to pages/_app [ ] Find a solution for global state handling to have the art pieces available on all pages [ ] Adapt the page pages/index: rename the function to SpotlightPage and have it render only the Spotlight component [ ] Create the page pages/art-pieces/index that renders the ArtPieces component [ ] Create the component Navigation that renders all navigation links [ ] Create the component Layout that renders the Navigation component [ ] Apply the Layout component in pages/_app