import { Menu, Transition } from "@headlessui/react" import { MagnifyingGlassIcon } from "@heroicons/react/20/solid" import { BellIcon } from "@heroicons/react/24/outline" import { Fragment } from "react" const userNavigation = [ { name: 'Your Profile' }, { name: 'Settings' }, { name: 'Sign out' }, ] function classNames(...classes: any[]) { return classes.filter(Boolean).join(' ') } const AppBar = () =>