buy dmenu

This commit is contained in:
hamid zarghami
2025-12-28 09:32:05 +03:30
parent 31e826f2fb
commit 7de3678ab0
8 changed files with 343 additions and 17 deletions
+2
View File
@@ -32,6 +32,7 @@ import BuyService from '../pages/service/BuyService'
import Support from '../pages/support/Support'
import SupportInfo from '../pages/support/SupportInfo'
import Invoice from '../pages/receipts/Invoice'
import { ManageRestaurant } from '../pages/service/ManageRestaurant'
const MainRouter: FC = () => {
return (
@@ -45,6 +46,7 @@ const MainRouter: FC = () => {
<Route path={Pages.dashboard} element={<Home />} />
<Route path={Pages.support.index} element={<Support />} />
<Route path={Pages.support.info} element={<SupportInfo />} />
<Route path={Pages.services.manageRestaurant + ':subscriptionId'} element={<ManageRestaurant />} />
<Route path={Pages.services.mine} element={<MyServices />} />
<Route path={Pages.services.other} element={<OtherServices />} />
<Route path={Pages.services.detail + ':id'} element={<DetailService />} />