Frontend Routes - MannanK/Superflix GitHub Wiki

Frontend Routes

The components are organized as follows:

  • Root
    • App
      • NavBar
      • (main components go here)
      • Footer

The following routes will be defined in App and will render the following components between NavBar and Footer:

  • /
    • Splash
  • /login
    • SessionForm
  • /signup
    • SessionForm
  • /browse
    • MainMedia
    • MediaIndex
      • MediaRow
        • MediaRowItem
  • /browse/genre/:genreId
    • GenreIndex
      • MediaRow
        • MediaRowItem
  • /browse/my-list
    • MyList
      • MediaRow
        • MediaRowItem
  • /search?q={search_terms}
    • SearchIndex
      • MediaRow
        • MediaRowItem
  • /watch/:mediaId
    • MediaPlayer