diff --git a/components/dashboard/DashboardNav.tsx b/components/dashboard/DashboardNav.tsx index 6d30df5a..056c08d3 100644 --- a/components/dashboard/DashboardNav.tsx +++ b/components/dashboard/DashboardNav.tsx @@ -213,7 +213,20 @@ export default function DashboardNav({ companyName: _companyName, entityType, un "mr-2.5 h-[15px] w-[15px] flex-shrink-0", active ? "text-primary" : "text-muted-foreground group-hover:text-foreground" )} /> - {item.label} + {item.label} + {item.comingSoon ? ( + + Kommer snart + + ) : item.devBadge ? ( + + Dev + + ) : item.betaBadge ? ( + + Beta + + ) : null} ) const baseClass = cn( @@ -551,7 +564,20 @@ export default function DashboardNav({ companyName: _companyName, entityType, un const content = ( <> - {item.label} + {item.label} + {item.comingSoon ? ( + + Kommer snart + + ) : item.devBadge ? ( + + Dev + + ) : item.betaBadge ? ( + + Beta + + ) : null} ) const baseClass = cn(