'use client' import Link from 'next/link' import { usePathname } from 'next/navigation' import { logoutAction } from '@/actions/auth' import { Button } from '@/components/ui/button' import { Badge } from '@/components/ui/badge' import { AppIcon } from '@/components/shared/app-icon' import { cn } from '@/lib/utils' interface NavBarProps { isDemo: boolean } export function NavBar({ isDemo }: NavBarProps) { const pathname = usePathname() const navLinks = [ { href: '/dashboard', label: 'Producten' }, { href: '/todos', label: "Todo's" }, ] return (
{/* Logo */} Scrum4Me {isDemo && ( Demo )} {/* Nav links */} {/* Rechts: instellingen + uitloggen */}
Instellingen
) }