return policy page

This commit is contained in:
hamid zarghami
2025-09-30 14:59:21 +03:30
parent bcc7aa78f5
commit 38e5a20f42
4 changed files with 117 additions and 4 deletions
+2
View File
@@ -51,6 +51,7 @@ import FaqCreate from '@/pages/setting/FaqCreate'
import FaqUpdate from '@/pages/setting/FaqUpdate'
import ShipmentPage from '@/pages/setting/ShipmentPage'
import PrivacyPage from '@/pages/setting/PrivacyPage'
import ReturnPolicyPage from '@/pages/setting/ReturnPolicyPage'
const MainRouter: FC = () => {
@@ -127,6 +128,7 @@ const MainRouter: FC = () => {
<Route path={`${Pages.pages.faqUpdate}:id`} element={<FaqUpdate />} />
<Route path={Pages.pages.shipment} element={<ShipmentPage />} />
<Route path={Pages.pages.privacy} element={<PrivacyPage />} />
<Route path={Pages.pages.returnPolicy} element={<ReturnPolicyPage />} />
</Routes>
</div>
</div>