create tabs component + create filter component + my orders page

This commit is contained in:
hamid zarghami
2025-10-18 14:42:41 +03:30
parent b4da39fe5f
commit 8ce42653cf
17 changed files with 739 additions and 11 deletions
+2
View File
@@ -4,6 +4,7 @@ import Home from '../pages/home/Home'
import SideBar from '../shared/Sidebar'
import Header from '../shared/Header'
import { Paths } from '@/config/Paths'
import MyOrders from '@/pages/order/MyOrders'
const MainRouter: FC = () => {
return (
@@ -17,6 +18,7 @@ const MainRouter: FC = () => {
<Routes>
<Route path="/" element={<Home />} />
<Route path={Paths.home} element={<Home />} />
<Route path={Paths.myOrders} element={<MyOrders />} />
</Routes>
</div>
</div>