Skip to content

Frontend Routes

chen445 edited this page May 28, 2021 · 1 revision

There is a template for every routes. The template contains NavBar and Footer. NavBar has Logo, SearchBar and SignIn or Logout depending on whether the user is logged in.

  • /
    • Home contains a list products shown to user. Each product is a Product component.
  • /product/:productId
    • ProductShow
      • ProductDetails
      • AddToCart: A section where user can add the product into the cart and change the quantity.
      • Reviews
  • /search?search={query}
    • SearchResult display a list of products based on the query
  • /cart
    • Cart
      • CartItem
      • Checkout
  • /login
    • SessionForm
  • /signup
    • SessionForm

Clone this wiki locally