"use client"; import React from "react"; import Link from "next/link"; import { usePathname } from "next/navigation"; export default function MissionsLayout({ children, }: { children: React.ReactNode; }) { const pathname = usePathname(); return (
{/* Sidebar with light pink background */}
{/* Title section */}

CAP

Centre d'Administration et de Pilotage

{/* Navigation links */}
{/* Main content - white background */}
{children}
); }