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:
Alireza Hassani
2026-08-10 00:23:03 +03:30
co-authored by Cursor
parent c5bdaad16b
commit 1271d96539
96 changed files with 10532 additions and 345 deletions
@@ -0,0 +1,16 @@
import { Outlet } from 'react-router-dom'
import { Header } from './Header'
import styles from './AddMyProductLayout.module.css'
export function AddMyProductLayout() {
return (
<div className={styles.page}>
<Header hideMenu showBrand />
<main className={styles.main}>
<div className={styles.container}>
<Outlet />
</div>
</main>
</div>
)
}