diff options
Diffstat (limited to 'src/app/(public)/demos/page.tsx')
| -rw-r--r-- | src/app/(public)/demos/page.tsx | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/app/(public)/demos/page.tsx b/src/app/(public)/demos/page.tsx index 7afee2a..3189e2d 100644 --- a/src/app/(public)/demos/page.tsx +++ b/src/app/(public)/demos/page.tsx @@ -32,7 +32,6 @@ const demos = [ description: "Visualisation interactive des couches de sécurité Zero Trust. Explorez les différentes stratégies d'implémentation.", href: "/demos/zero-trust", - status: "Bientôt disponible", }, ]; @@ -67,9 +66,11 @@ export default function DemosPage() { <div className="w-12 h-12 rounded-lg bg-cosmos-900 flex items-center justify-center"> <Icon className="w-6 h-6 text-araucaria-400" /> </div> - <span className="px-3 py-1 text-xs font-medium bg-araucaria-50 text-araucaria-700 rounded-full border border-araucaria-200"> - {demo.status} - </span> + {demo.status ? ( + <span className="px-3 py-1 text-xs font-medium bg-araucaria-50 text-araucaria-700 rounded-full border border-araucaria-200"> + {demo.status} + </span> + ) : null} </div> <h3 className="text-xl font-semibold text-cosmos-900"> {demo.title} |
