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,13 @@
import { AuthGuard } from '@/components/auth-guard'
import { WholesaleHomePage } from '@/components/home/wholesale-home-page'
import { useRoleGuard } from '@/hooks/useRoleGuard'
export default function WholesaleHomePageRoute() {
useRoleGuard('WHOLESALE')
return (
<AuthGuard>
<WholesaleHomePage />
</AuthGuard>
)
}