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'
// TODO: Создать компонент для создания товарных поставок
export default function CreateSellerGoodsPage() {
return (
<AuthGuard>
<div className="p-6">
<h1>Создание поставки товаров</h1>
<p>Страница в разработке</p>
</div>
</AuthGuard>
)
}