Folder Structure

Folder Structure


Commercehope App/
            ├── lib
            |     ├──  db/
            |     ├──  provider
            ├── models/
            |     ├──  brands.js
            |     ├──  Category.js
            |     ├──  Newsletter.js
            |     ├──  Notification.js
            |     ├──  Order.js
            |     ├──  Product.js
            |     ├──  Review.js
            |     ├──  User.js
            ├── public/
            |     └──  images/
            ├── src/
            |     └──  app/
            |     ├──    └── (admin)/dashboard
            |     ├──    |       └── brands/
            |     ├──    |       |     └── [slug]/
            |     ├──    |       |     └── add/
            |     ├──    |       |     ├── page.jsx
            |     ├──    |       └── categories/
            |     ├──    |       |     └── [slug]/
            |     ├──    |       |     |     ├── page.jsx
            |     ├──    |       |     └── add/
            |     ├──    |       |     |     ├── page.jsx
            |     ├──    |       |     ├── page.jsx
            |     ├──    |       └── orders/
            |     ├──    |       |     └── [oid]/
            |     ├──    |       |     |       ├── page.jsx
            |     ├──    |       |     ├── page.jsx
            |     ├──    |       └── products/
            |     ├──    |       |     └── [slug]/
            |     ├──    |       |     |       ├── page.jsx
            |     ├──    |       |     └── add/
            |     ├──    |       |     |       ├── page.jsx
            |     ├──    |       |     ├── page.jsx
            |     ├──    |       └── layout.jsx
            |     ├──    |       └── page.jsx
            |     ├──    └── (user)/
            |     ├──    |       └── auth/
            |     ├──    |       |     └── forget-password/
            |     ├──    |       |     └── login/
            |     ├──    |       |     └── register/
            |     ├──    |       |     └── reset-password/
            |     ├──    |       |     └── unauthorized/
            |     ├──    |       |     └── verify-otp/
            |     ├──    |       └── cart/
            |     ├──    |       |     ├── page.jsx
            |     ├──    |       └── checkout/
            |     ├──    |       |     ├── page.jsx
            |     ├──    |       └── order/
            |     ├──    |       |     └── [oid]/
            |     ├──    |       |     └── reviews/
            |     ├──    |       └── product/
            |     ├──    |       |     └── [slug]/
            |     ├──    |       |     |      ├── page.jsx
            |     ├──    |       └── products/
            |     ├──    |       |     └── [category]/
            |     ├──    |       |     ├── page.jsx
            |     ├──    |       └── profile/
            |     ├──    |       |     └── billing/
            |     ├──    |       |     └── change-password/
            |     ├──    |       |     └── general/
            |     ├──    |       |     └── invoice/
            |     ├──    |       |     └── wishlist/
            |     ├──    |       |     ├── layout.jsx
            |     ├──    |       |     ├── profile.json
            |     ├──    |       └── search/
            |     ├──    |       |     ├── page.jsx
            |     ├──    |       └── starred/
            |     ├──    |       |     ├── page.jsx
            |     ├──    |       └── tasks/
            |     ├──    |       |     ├── page.jsx
            |     ├──    |       ├── favicon.ico
            |     ├──    |       ├── layout.jsx
            |     ├──    |       ├── loading.jsx
            |     ├──    |       ├── page.jsx
            |     ├──    |       ├── products.json
            |     ├──    └── api/
            |     ├──    |    └── admin/
            |     ├──    |    |     └── brands/
            |     ├──    |    |     |     └── [slug]/
            |     ├──    |    |     |     └── all/
            |     ├──    |    |     |     ├── route.js
            |     ├──    |    |     └── categories/
            |     ├──    |    |     |     └── [slug]/
            |     ├──    |    |     |     └── all/
            |     ├──    |    |     |     ├── route.js
            |     ├──    |    |     └── dashboard-analytics/
            |     ├──    |    |     |     ├── route.js
            |     ├──    |    |     └── newsletter/
            |     ├──    |    |     |     ├── route.js
            |     ├──    |    |     └── 4 more Folders
            |     ├──    |    └── auth/
            |     ├──    |    |     └── forget-password/
            |     ├──    |    |     |     ├── route.js
            |     ├──    |    |     └── login/
            |     ├──    |    |     └── register/
            |     ├──    |    |     └── resent-otp/
            |     ├──    |    |     └── resend-password/
            |     ├──    |    |     └── verify-otp/
            |     ├──    |    └── brand/
            |     ├──    |    |     ├── route.js
            |     ├──    |    └── cart/
            |     ├──    |    |     ├── route.js
            |     ├──    |    └── categories/
            |     ├──    |    |     ├── route.js
            |     ├──    |    └── delete-file/
            |     ├──    |    |     ├── route.js
            |     ├──    |    └── filters/
            |     ├──    |    |     └── category/
            |     ├──    |    |     ├── route.js
            |     ├──    |    └── newsletter/
            |     ├──    |    |     ├── route.js
            |     ├──    |    └── orders/
            |     ├──    |    |     └── [id]/
            |     ├──    |    |     ├── route.js
            |     ├──    |    └── payment-intents/
            |     ├──    |    └── product/
            |     ├──    |    └── 4 more Folders...
            |     ├──    └── layout
            |     └──  assets/
            |     |      ├── js files
            |     └──  components/
            |     ├──    └── _admin
            |     ├──    |    └── brands/
            |     ├──    |    └── categories/
            |     ├──    |    └── dashboard/
            |     ├──    |    └── layout/
            |     ├──    |    |       └── sidebar/
            |     ├──    |    |       └── topbar/
            |     ├──    |    |       └── index.jsx
            |     ├──    |    └── orders/
            |     ├──    |    └── 3 more Folders/
            |     ├──    └── _main
            |     ├──    |    └── auth/
            |     ├──    |    └── cart/
            |     ├──    |    └── checkout/
            |     ├──    |    └── home/
            |     ├──    |    └── lists/
            |     ├──    |    └── 4 more Folders/
            |     ├──    └── @materail-extend
            |     ├──    |    └── index.js
            |     ├──    └── animate
            |     ├──    |    └── variants/
            |     ├──    |    └── 6 more files
            |     ├──    └── cards
            |     ├──    |    └── category/
            |     ├──    |    └── checkoutCard/
            |     ├──    |    └── 10 more files
            |     ├──    └── carousels
            |     ├──    |    └── detailsCarousel/
            |     ├──    |    └── productsCarousel/
            |     ├──    |    └── 1 Folder 2 files ..
            |     ├──    └── charts
            |     ├──    └── forms
            |     ├──    └── illustrations
            |     ├──    └── layout
            |     ├──    |    └── main/
            |     ├──    |    |      └── footer/
            |     ├──    |    |      └── mainAppbar/
            |     ├──    |    |      └── mobileAppbar/
            |     ├──    |    |      └── config.json
            |     ├──    |    |      └── styled.js
            |     ├──    └── lists
            |     ├──    |    └── menuDesktopList/
            |     ├──    |    └── notifications/
            |     ├──    |    └── reviews/
            |     ├──    |    └── 3 more files/
            |     ├──    └── popover
            |     ├──    |    └── menudesktop/
            |     ├──    |    └── notifications/
            |     ├──    |    └── wishlist/
            |     ├──    |    └── 3 more files/
            |     ├──    └── searchDialog
            |     ├──    └── select
            |     ├──    └── settings
            |     ├──    |    └── colorSetting/
            |     ├──    |    └── fullscreenSetting/
            |     ├──    |    └── 1 Folder + 2 more files/
            |     ├──    └── skeletons
            |     ├──    └── stripe
            |     ├──    └── table
            |     ├──    └── upload
            |     ├──    └── 20 more files..
            |     └──  hook/
            |     └──  lib/
            |     └──  services/
            |     └──  themeRegistry/
            |     ├──    └── overrides
            |     ├──    └── 8 more files..
            |     └──  utils/
            |     ├──    └── 24 more files..
            |     ├──  -------
            |     ├──  SO ON..