Add Dimensions tab for packaging and MOQ consistency check

This commit is contained in:
Christian Vidal Wolf
2026-03-29 17:30:04 +02:00
parent 2ed90234a7
commit 3db2bc0dae
5 changed files with 382 additions and 6 deletions
+3 -2
View File
@@ -1,16 +1,17 @@
import React from 'react';
import { FileSpreadsheet, FileText, CheckSquare, Table } from 'lucide-react';
import { FileSpreadsheet, FileText, CheckSquare, Table, Box } from 'lucide-react';
import { cn } from '../lib/utils';
interface SidebarProps {
activeModule: string;
setActiveModule: (m: 'descriptions' | 'completeness' | 'matrix') => void;
setActiveModule: (m: 'descriptions' | 'completeness' | 'matrix' | 'dimensions') => void;
}
export function Sidebar({ activeModule, setActiveModule }: SidebarProps) {
const navItems = [
{ id: 'matrix', label: 'Matrix', icon: Table },
{ id: 'descriptions', label: 'Product Descriptions', icon: FileText },
{ id: 'dimensions', label: 'Dimensions', icon: Box },
] as const;
return (