plan info

This commit is contained in:
hamid zarghami
2025-05-07 15:38:13 +03:30
parent afc033e9e8
commit 0cd101d807
6 changed files with 267 additions and 5 deletions
+2
View File
@@ -30,6 +30,7 @@ import MyDiscountList from '../pages/discounts/List'
import LearningDetail from '../pages/learning/Detail'
import BuyService from '../pages/service/BuyService'
import Support from '../pages/support/Support'
import SupportInfo from '../pages/support/SupportInfo'
const MainRouter: FC = () => {
return (
@@ -42,6 +43,7 @@ const MainRouter: FC = () => {
<Routes>
<Route path={Pages.dashboard} element={<Home />} />
<Route path={Pages.support.index} element={<Support />} />
<Route path={Pages.support.info} element={<SupportInfo />} />
<Route path={Pages.services.mine} element={<MyServices />} />
<Route path={Pages.services.other} element={<OtherServices />} />
<Route path={Pages.services.detail + ':id'} element={<DetailService />} />