feat(F-048): completed feature

This commit is contained in:
chattie
2026-08-19 07:17:14 +02:00
parent 8ee1938af9
commit 835ab66eda
187 changed files with 12361 additions and 1065 deletions

View File

@@ -23,7 +23,7 @@ function Sidebar({
<div className="px-4 py-5 border-b border-gray-100">
<img
src="/images/logo-main.png"
alt="MercadoDeVida"
alt="mercadodevida"
className="h-9 w-auto object-contain mx-auto"
/>
</div>
@@ -103,7 +103,9 @@ function DashboardShell({ children }: { children: React.ReactNode }) {
<div className="flex min-h-screen bg-gray-50">
<Sidebar navItems={navItems} user={user} onLogout={logout} />
<main className="flex-1 min-w-0">
{children}
<div className="w-full max-w-[1280px] mx-auto">
{children}
</div>
</main>
</div>
);