'use client'; import Link from 'next/link'; import { usePathname } from 'next/navigation'; const SECTIONS = [ { href: '/reporting/dashboard', label: 'Dashboard', icon: '๐' }, { href: '/reporting/sales', label: 'Ventas', icon: '๐งพ' }, { href: '/reporting/products', label: 'Productos', icon: '๐ฆ' }, ] as const; export default function ReportingLayout({ children }: { children: React.ReactNode }) { const pathname = usePathname(); return (
Informes de ventas y rendimiento del negocio.