feat: mise à jour sécurité CVE-2025-55182 (Next.js 15.5.7, React 19.1.2)

This commit is contained in:
jessy-david-dev
2026-02-08 17:24:48 +01:00
commit b9a9d687b6
64 changed files with 15638 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
import Providers from "@/app/providers";
import Sidebar from "./Sidebar";
export const metadata = { title: "Dashboard | Aystone" };
export default function DashboardLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<Providers>
<div className="flex min-h-screen bg-[#0e0e10] text-amber-50">
<Sidebar />
<main className="flex-1 p-6">{children}</main>
</div>
</Providers>
);
}