diff --git a/src/components/NavBar.tsx b/src/components/NavBar.tsx index c0bc089..25e66ca 100644 --- a/src/components/NavBar.tsx +++ b/src/components/NavBar.tsx @@ -2,6 +2,7 @@ import { Fragment } from 'react' import { Disclosure, Menu, Transition } from '@headlessui/react' import { BellIcon, MenuIcon, XIcon } from '@heroicons/react/outline' +import { SearchIcon } from '@heroicons/react/solid' import DittoImg from "../assets/ditto.png" @@ -9,7 +10,6 @@ import DittoImg from "../assets/ditto.png" const navigation = [ { name: 'Home', href: '#', current: true }, { name: 'About Us', href: '#', current: false }, - { name: 'Search', href: '#', current: false }, ] function classNames(...classes:any) { @@ -72,6 +72,25 @@ export default function NavBar() { ))} +