diff --git a/components/shared/nav-bar.tsx b/components/shared/nav-bar.tsx index f3780c2..d05a27f 100644 --- a/components/shared/nav-bar.tsx +++ b/components/shared/nav-bar.tsx @@ -118,7 +118,7 @@ export function NavBar({ > {/* Links: logo + nav */}
- + Scrum4Me {isDemo && ( @@ -157,6 +157,7 @@ export function NavBar({ @@ -195,7 +196,9 @@ export function NavBar({
- + + +
) diff --git a/components/shared/panel-nav-bar.tsx b/components/shared/panel-nav-bar.tsx index 8cf367f..83b842f 100644 --- a/components/shared/panel-nav-bar.tsx +++ b/components/shared/panel-nav-bar.tsx @@ -13,8 +13,8 @@ export function PanelNavBar({ title, actions, className }: PanelNavBarProps) { {...debugProps('panel-nav-bar')} className={cn('flex items-center justify-between px-4 py-2 border-b border-border bg-surface-container-low shrink-0', className)} > - {title} - {actions &&
{actions}
} + {title} + {actions &&
{actions}
}
) } diff --git a/components/shared/status-bar.tsx b/components/shared/status-bar.tsx index c8702a4..4750a0c 100644 --- a/components/shared/status-bar.tsx +++ b/components/shared/status-bar.tsx @@ -20,8 +20,8 @@ export function StatusBar() { className="shrink-0 border-t border-border bg-surface-container-low h-14 px-4 flex items-center justify-between text-sm text-muted-foreground select-none" {...debugProps('status-bar')} > - © {new Date().getFullYear()} Scrum4Me - v{version} · gebouwd op {buildDate}{isDev && } + © {new Date().getFullYear()} Scrum4Me + v{version} · gebouwd op {buildDate}{isDev && } ) }