feat: rename and clarify supplies sections for different cabinet types
- Seller cabinet: 'Мои поставки' (creating supplies for marketplaces) - Fulfillment cabinet: 'Входящие поставки' (receiving goods and materials) - Wholesale cabinet: 'Отгрузки' (shipping goods to sellers/fulfillment) - Logistics cabinet: 'Перевозки' (managing transportation routes) - Update sidebar navigation with specific names for each cabinet type - Create logistics dashboard with route management functionality - Add logistics page with transportation statistics and active routes - Update routing logic to handle all cabinet types correctly
This commit is contained in:
10
src/app/logistics/page.tsx
Normal file
10
src/app/logistics/page.tsx
Normal file
@ -0,0 +1,10 @@
|
||||
import { AuthGuard } from "@/components/auth-guard";
|
||||
import { LogisticsDashboard } from "@/components/logistics/logistics-dashboard";
|
||||
|
||||
export default function LogisticsPage() {
|
||||
return (
|
||||
<AuthGuard>
|
||||
<LogisticsDashboard />
|
||||
</AuthGuard>
|
||||
);
|
||||
}
|
Reference in New Issue
Block a user