Add customer and business user-product flows across dashboards.
Ship my-products / customer-products UI with gallery uploads, status controls, module gating, and related shared UI polish. Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
co-authored by
Cursor
parent
c5bdaad16b
commit
1271d96539
@@ -23,6 +23,9 @@ import { StorePage } from './pages/StorePage'
|
||||
import { StoreItemsPage } from './pages/StoreItemsPage'
|
||||
import { StoreSpecialsPage } from './pages/StoreSpecialsPage'
|
||||
import { CustomersPage } from './pages/CustomersPage'
|
||||
import { CustomerProductsPage } from './pages/CustomerProductsPage'
|
||||
import { CustomerProductDetailsPage } from './pages/CustomerProductDetailsPage'
|
||||
import { AddCustomerProductPage } from './pages/AddCustomerProductPage'
|
||||
import { OrdersPage } from './pages/OrdersPage'
|
||||
import { LoginPage } from './pages/LoginPage'
|
||||
import { ShoppingCardsPage } from './pages/ShoppingCardsPage'
|
||||
@@ -83,6 +86,10 @@ function App() {
|
||||
<Route path="store/cards" element={<ShoppingCardsPage />} />
|
||||
<Route path="store/settings" element={<StoreSettingsPage />} />
|
||||
<Route path="customers" element={<CustomersPage />} />
|
||||
<Route path="customer-products" element={<CustomerProductsPage />} />
|
||||
<Route path="customer-products/new" element={<AddCustomerProductPage />} />
|
||||
<Route path="customer-products/:id/edit" element={<AddCustomerProductPage />} />
|
||||
<Route path="customer-products/:id" element={<CustomerProductDetailsPage />} />
|
||||
<Route path="blog" element={<BlogPage />} />
|
||||
<Route path="blog/list" element={<BlogListPage />} />
|
||||
<Route path="blog/detail/:id" element={<BlogDetailsPage />} />
|
||||
|
||||
Reference in New Issue
Block a user