update
This commit is contained in:
@@ -59,6 +59,7 @@ const InvoiceEditPage = lazy(() => import('./pages/admin/InvoiceEditPage'));
|
||||
const ProfilePage = lazy(() => import('./pages/customer/ProfilePage'));
|
||||
const LoyaltyPage = lazy(() => import('./pages/customer/LoyaltyPage'));
|
||||
const GroupBookingPage = lazy(() => import('./pages/customer/GroupBookingPage'));
|
||||
const ComplaintPage = lazy(() => import('./pages/customer/ComplaintPage'));
|
||||
const AboutPage = lazy(() => import('./features/content/pages/AboutPage'));
|
||||
const ContactPage = lazy(() => import('./features/content/pages/ContactPage'));
|
||||
const PrivacyPolicyPage = lazy(() => import('./features/content/pages/PrivacyPolicyPage'));
|
||||
@@ -93,6 +94,9 @@ const SecurityManagementPage = lazy(() => import('./pages/admin/SecurityManageme
|
||||
const EmailCampaignManagementPage = lazy(() => import('./pages/admin/EmailCampaignManagementPage'));
|
||||
const ReviewManagementPage = lazy(() => import('./pages/admin/ReviewManagementPage'));
|
||||
const BlogManagementPage = lazy(() => import('./pages/admin/BlogManagementPage'));
|
||||
const ComplaintManagementPage = lazy(() => import('./pages/admin/ComplaintManagementPage'));
|
||||
const FinancialAuditTrailPage = lazy(() => import('./pages/admin/FinancialAuditTrailPage'));
|
||||
const ComplianceReportingPage = lazy(() => import('./pages/admin/ComplianceReportingPage'));
|
||||
|
||||
const StaffDashboardPage = lazy(() => import('./pages/staff/DashboardPage'));
|
||||
const StaffBookingManagementPage = lazy(() => import('./pages/staff/BookingManagementPage'));
|
||||
@@ -401,6 +405,14 @@ function App() {
|
||||
</CustomerRoute>
|
||||
}
|
||||
/>
|
||||
<Route
|
||||
path="complaints"
|
||||
element={
|
||||
<CustomerRoute>
|
||||
<ComplaintPage />
|
||||
</CustomerRoute>
|
||||
}
|
||||
/>
|
||||
</Route>
|
||||
|
||||
{}
|
||||
@@ -521,6 +533,18 @@ function App() {
|
||||
path="blog"
|
||||
element={<BlogManagementPage />}
|
||||
/>
|
||||
<Route
|
||||
path="complaints"
|
||||
element={<ComplaintManagementPage />}
|
||||
/>
|
||||
<Route
|
||||
path="financial-audit"
|
||||
element={<FinancialAuditTrailPage />}
|
||||
/>
|
||||
<Route
|
||||
path="compliance"
|
||||
element={<ComplianceReportingPage />}
|
||||
/>
|
||||
</Route>
|
||||
|
||||
{}
|
||||
|
||||
Reference in New Issue
Block a user