'use client'; import { Logo } from '@/components/Logo'; import { cn } from '@/utils/cn'; import Link from 'next/link'; import { usePathname } from 'next/navigation'; interface Props { darkText?: boolean; className?: string; } export function Navbar({ darkText = false, className }: Props) { const pathname = usePathname(); const textColor = darkText ? 'text-blue-dark' : 'text-white'; return (
); }