Implement Sirvoy booking services

This commit is contained in:
gpt-engineer-app[bot]
2025-09-25 18:25:37 +00:00
parent 557f8bdd77
commit 576d7dd711
5 changed files with 998 additions and 4 deletions

View File

@@ -20,7 +20,7 @@ import OrderConfirmation from "./pages/OrderConfirmation";
import DashboardLayout from "./components/DashboardLayout";
import Dashboard from "./pages/dashboard/Dashboard";
import AdminDashboard from "./pages/dashboard/AdminDashboard";
import AddListing from "./pages/dashboard/AddListing";
import ChannelManager from "./pages/dashboard/ChannelManager";
import Wallet from "./pages/dashboard/Wallet";
import MyListings from "./pages/dashboard/MyListings";
import Messages from "./pages/dashboard/Messages";
@@ -145,10 +145,10 @@ const AppRouter = () => (
</ProtectedRoute>
} />
<Route path="/dashboard/add-listing" element={
<Route path="/dashboard/channel-manager" element={
<ProtectedRoute>
<DashboardLayout>
<AddListing />
<ChannelManager />
</DashboardLayout>
</ProtectedRoute>
} />