HackYourFuture-CPH / fp-class18

Interior design webshop
MIT License
1 stars 0 forks source link

Frontend: Dummy Pages #61

Closed dpfernandes closed 2 years ago

dpfernandes commented 2 years ago

User story

Who: As a developer What: I want to develop the App's pages in placeholders even though all the components are not ready. Why: So that we can get some work done with those components that are ready to be used in those placeholders.

Acceptance criteria

Create Dummy pages and css files for those pages:

  1. LandingPage- src/client/containers/LandingPage/LandingPage.Container.js

  2. LandingPage.Style- src/client/containers/LandingPage/LandingPage.Style.css

  3. ProductPage - src/client/containers/ProductPage/ProductPage.Container.js

  4. ProductPage.Style - src/client/containers/ProductPage/ProductPage.Style.css

  5. CategoryPage - src/client/containers/CategoryPage/CategoryPage.Container.js

  6. CategoryPage.Style - src/client/containers/CategoryPage/CategoryPage.Style.css

  7. MonthlyArrivalsPage - src/client/containers/MonthlyArrivalsPage/MonthlyArrivalsPage.Container.js

  8. MonthlyArrivalsPage.Style - src/client/containers/MonthlyArrivalsPage/MonthlyArrivalsPage.Style.css

  9. FavoritesPage - src/client/containers/FavoritesPage/FavoritesPage.Container.js

  10. FavoritesPage.Style - src/client/containers/FavoritesPage/FavoritesPage.Style.css

  11. CartPage - src/client/containers/CartPage/CartPage.Container.js

  12. CartPage - src/client/containers/CartPage/CartPage.Style.css

  13. OrderPage - src/client/containers/OrderPage/OrderPage.Container.js

  14. OrderPage - src/client/containers/OrderPage/OrderPage.Style.css

  15. ConfirmationPage - src/client/containers/ConfirmationPage/ConfirmationPage.Container.js

  16. ConfirmationPage - src/client/containers/ConfirmationPage/ConfirmationPage.Style.css

  17. ProfilePage- src/client/containers/ProfilePage/ProfilePage.Container.js

  18. ProfilePage.Style - src/client/containers/ProfilePage/ProfilePage.Style.css

  19. 404Page - src/client/containers/404Page/404Page.Container.js

  20. 404Page.Style - src/client/containers/404Page/404Page.Style.css

At this point these files will be used as placeholders so that everyone knows where place the components that belong to each page.

Please only write the page tile for example Landing Page so everyone can understand what should be placed there.

Implemented details

Please make sure the pages don't exist with a different name so we avoid duplicates.

varsha84 commented 2 years ago

Hi Daniel, I got comments on my PR from @BikramRawat, about naming conventions. that does not fully align with this issue file naming conventions.

https://github.com/HackYourFuture-CPH/fp-class18/pull/33

/MotorcycleCard/MotorcycleCard.component.js (for component file) /MotorcycleCard/MotorcycleCard.styles.css (for CSS file) /MotorcycleCard/MotorcycleCard.stories.js (for stories file)

but I changed in my PR as per the review comments