
- Create new supplies dashboard with multi-level navigation structure - Add fulfillment supplies section with goods/materials/returns tabs - Add marketplace supplies section with Wildberries/Ozon tabs - Update existing supplies pages to use new dashboard - Fix height alignment in statistics blocks - Remove redundant title from materials supplies section
10 lines
261 B
TypeScript
10 lines
261 B
TypeScript
import { AuthGuard } from "@/components/auth-guard"
|
|
import { SuppliesDashboard } from "@/components/fulfillment-supplies/supplies-dashboard"
|
|
|
|
export default function SuppliesPage() {
|
|
return (
|
|
<AuthGuard>
|
|
<SuppliesDashboard />
|
|
</AuthGuard>
|
|
)
|
|
}
|