import { FolderTree, PlusCircle, Package, Settings, Tag } from 'lucide-react' import { SectionCard } from '../components/SectionCard' import { ProductActivityChart } from '../components/ProductActivityChart' import { Breadcrumbs } from '../components/Breadcrumbs' import { useT } from '../i18n/useT' import type { BusinessMessageKey } from '../i18n/messages' import styles from '../components/PageContent.module.css' const productSections: { icon: typeof Package titleKey: BusinessMessageKey descKey: BusinessMessageKey href: string }[] = [ { icon: Package, titleKey: 'nav.products.list', descKey: 'products.card.list.desc', href: '/products/list', }, { icon: PlusCircle, titleKey: 'products.card.new.title', descKey: 'products.card.new.desc', href: '/products/new', }, { icon: FolderTree, titleKey: 'nav.products.categories', descKey: 'products.card.categories.desc', href: '/products/categories', }, { icon: Tag, titleKey: 'nav.products.brands', descKey: 'products.card.brands.desc', href: '/products/brands', }, { icon: Settings, titleKey: 'nav.products.settings', descKey: 'products.card.settings.desc', href: '/products/settings', }, ] export function ProductsPage() { const t = useT() return (

{t('title.products')}

{t('products.overview.subtitle')}

{productSections.map((section) => ( ))}
) }