'use client'; import { useRouter } from 'next/navigation'; import { Button } from '@zen/core/shared/components'; const AdminHeader = ({ title, description, backHref, backLabel = '← Retour', action }) => { const router = useRouter(); return (

{title}

{description && (

{description}

)}
{backHref && ( )} {action}
); }; export default AdminHeader;