Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | 1x | interface Props {
onCreateClick: () => void;
}
export default function OffresHeader({ onCreateClick }: Props) {
return (
<header className="bg-white shadow-md">
<div className="flex justify-between items-center py-6 px-6">
{/*<BackToEventsButton />*/}
<h1 className="text-3xl font-bold text-gray-900">
🏃 Gestion des Offres
</h1>
<button
onClick={onCreateClick}
className="bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-md text-sm font-medium transition-colors"
>
+ Nouvelle Offre
</button>
</div>
</header>
);
}
|