Initial commit: Meshkee dashboards monorepo.

Includes business, customer, and super-admin apps with shared packages and production deploy scripts.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Alireza Hassani
2026-07-22 13:48:53 +03:30
co-authored by Cursor
commit f566387c61
509 changed files with 62690 additions and 0 deletions
@@ -0,0 +1,20 @@
import { Outlet } from 'react-router-dom'
import { DraftCartProvider } from '../context/DraftCartContext'
import { Sidebar } from './Sidebar'
import { Header } from './Header'
import styles from './PageLayout.module.css'
export function PageLayout() {
return (
<DraftCartProvider>
<div className={styles.layout}>
<Sidebar />
<div className={styles.main}>
<Header />
<Outlet />
</div>
</div>
</DraftCartProvider>
)
}