feat: модульная архитектура sidebar и улучшения навигации

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Veronika Smirnova
2025-08-30 15:51:41 +03:00
parent 8391f40e87
commit b40ac083ab
128 changed files with 9366 additions and 17283 deletions

View File

@ -0,0 +1,15 @@
'use client'
import { AuthGuard } from '@/components/auth-guard'
import { MarketDashboard } from '@/components/market/market-dashboard'
import { useRoleGuard } from '@/hooks/useRoleGuard'
export default function LogisticsMarketPage() {
useRoleGuard('LOGIST')
return (
<AuthGuard>
<MarketDashboard />
</AuthGuard>
)
}