feat: модульная архитектура sidebar и улучшения навигации
🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
15
src/app/logistics/partners/page.tsx
Normal file
15
src/app/logistics/partners/page.tsx
Normal file
@ -0,0 +1,15 @@
|
||||
'use client'
|
||||
|
||||
import { AuthGuard } from '@/components/auth-guard'
|
||||
import { PartnersDashboard } from '@/components/partners/partners-dashboard'
|
||||
import { useRoleGuard } from '@/hooks/useRoleGuard'
|
||||
|
||||
export default function LogisticsPartnersPage() {
|
||||
useRoleGuard('LOGIST')
|
||||
|
||||
return (
|
||||
<AuthGuard>
|
||||
<PartnersDashboard />
|
||||
</AuthGuard>
|
||||
)
|
||||
}
|
Reference in New Issue
Block a user