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:
Veronika Smirnova
2025-07-21 13:45:39 +03:00
parent 753ec7b2ec
commit 0e584749f3
3 changed files with 367 additions and 10 deletions

View 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>
);
}