feat: add pricing panel with catalog CRUD and CSV import

This commit is contained in:
Carlos Narro
2026-05-30 12:36:31 +02:00
parent c00c571549
commit 4106d58614
3 changed files with 243 additions and 1 deletions

View File

@@ -19,7 +19,14 @@ export default function PanelLayout({ children }: { children: React.ReactNode })
<span className="text-gray-300">/</span>
<span className="text-sm font-medium text-gray-600">Reformas Ejemplo</span>
</Link>
<span className="text-xs font-medium text-gray-400">Panel del reformista</span>
<nav className="flex items-center gap-4 text-xs font-medium">
<Link href="/panel" className="text-gray-500 hover:text-black">
Leads
</Link>
<Link href="/panel/precios" className="text-gray-500 hover:text-black">
Precios
</Link>
</nav>
</div>
</header>
<main className="max-w-6xl mx-auto px-6 py-8">{children}</main>