'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 (
{description}
)}