feat: модульная архитектура sidebar и улучшения навигации
🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
13
src/app/seller/create/goods/page.tsx
Normal file
13
src/app/seller/create/goods/page.tsx
Normal 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>
|
||||
)
|
||||
}
|
Reference in New Issue
Block a user