Groups ui team ui
This commit is contained in:
parent
f931da66ca
commit
33b370e546
@ -667,7 +667,7 @@ export default function EquipePage() {
|
|||||||
setNewGroupDialogOpen(false);
|
setNewGroupDialogOpen(false);
|
||||||
setNewGroupName("");
|
setNewGroupName("");
|
||||||
}}
|
}}
|
||||||
className="border-gray-300 text-gray-700 hover:bg-gray-50"
|
className="border-gray-300 text-gray-700 hover:bg-gray-50 bg-white"
|
||||||
>
|
>
|
||||||
Annuler
|
Annuler
|
||||||
</Button>
|
</Button>
|
||||||
|
|||||||
@ -31,26 +31,27 @@ export default function MissionsLayout({
|
|||||||
|
|
||||||
{/* Navigation links */}
|
{/* Navigation links */}
|
||||||
<nav className="mt-4">
|
<nav className="mt-4">
|
||||||
{/* Équipe link */}
|
{/* Équipes link */}
|
||||||
<Link href="/missions/equipe" passHref>
|
<Link href="/missions/equipe" passHref>
|
||||||
<div className={`px-6 py-[10px] flex items-center gap-2 ${isEquipePage ? "bg-white" : ""} hover:bg-white transition-colors`}>
|
<div className={`px-6 py-[10px] flex items-center gap-2 ${isEquipePage ? "bg-white" : ""} hover:bg-white transition-colors cursor-pointer`}>
|
||||||
<Users className="h-4 w-4 text-gray-600" />
|
<Users className="h-4 w-4 text-gray-600" />
|
||||||
<span className="text-sm font-normal text-gray-700">Équipe</span>
|
<span className="text-sm font-normal text-gray-700">Équipes</span>
|
||||||
</div>
|
</div>
|
||||||
</Link>
|
</Link>
|
||||||
|
|
||||||
{/* Mes Missions with + button */}
|
{/* Missions with button */}
|
||||||
<div className={`px-6 py-[10px] flex items-center justify-between ${isMissionsPage ? "bg-white" : ""} hover:bg-white transition-colors group`}>
|
<div className={`px-6 py-[10px] ${isMissionsPage ? "bg-white" : ""} hover:bg-white transition-colors`}>
|
||||||
<Link href="/missions" className="flex items-center gap-2 flex-1">
|
<Link href="/missions" className="flex items-center gap-2 mb-2">
|
||||||
<FolderKanban className="h-4 w-4 text-gray-600" />
|
<FolderKanban className="h-4 w-4 text-gray-600" />
|
||||||
<span className="text-sm font-normal text-gray-700">Mes Missions</span>
|
<span className="text-sm font-normal text-gray-700">Missions</span>
|
||||||
</Link>
|
</Link>
|
||||||
<Link
|
<Link
|
||||||
href="/missions/new"
|
href="/missions/new"
|
||||||
className={`p-1 rounded-md hover:bg-blue-100 transition-colors ${isNewMissionPage ? "bg-blue-100" : ""}`}
|
className="w-full flex items-center justify-center gap-2 px-3 py-2 bg-blue-600 hover:bg-blue-700 text-white text-sm font-medium rounded-md transition-colors"
|
||||||
title="Nouvelle Mission"
|
title="Nouvelle Mission"
|
||||||
>
|
>
|
||||||
<Plus className="h-4 w-4 text-blue-600" />
|
<Plus className="h-4 w-4" />
|
||||||
|
<span>Nouvelle Mission</span>
|
||||||
</Link>
|
</Link>
|
||||||
</div>
|
</div>
|
||||||
</nav>
|
</nav>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user