"use client" import { Button } from "@/components/ui/button" import { Sheet, SheetContent, SheetTrigger } from "@/components/ui/sheet" import { Menu } from "lucide-react" import Link from "next/link" import { usePathname } from "next/navigation" import ClinicSenseButton from "@/components/clinicsense-button" import Image from "next/image" export default function Navbar() { const pathname = usePathname() const navItems = [ { href: "/", label: "Home" }, { href: "/about", label: "About" }, { href: "/contact", label: "Contact" }, ] return (
{/* Logo */} Ebb'nFlow Therapeutics Logo
Ebb'nFlow Therapeutics
{/* Desktop Navigation */} {/* Desktop CTA */}
{/* Mobile Navigation */}
Ebb'nFlow Therapeutics {navItems.map((item) => ( {item.label} ))}
) }