'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 (

Reporting

Informes de ventas y rendimiento del negocio.

{children}
); }