diff --git a/src/Header/Nav/index.tsx b/src/Header/Nav/index.tsx index 070fcca..ec02037 100644 --- a/src/Header/Nav/index.tsx +++ b/src/Header/Nav/index.tsx @@ -5,8 +5,6 @@ import React from 'react' import type { Header as HeaderType } from '@/payload-types' import { CMSLink } from '@/components/Link' -import Link from 'next/link' -import { SearchIcon } from 'lucide-react' export const HeaderNav: React.FC<{ data: HeaderType }> = ({ data }) => { const navItems = data?.navItems || [] @@ -16,10 +14,6 @@ export const HeaderNav: React.FC<{ data: HeaderType }> = ({ data }) => { {navItems.map(({ link }, i) => { return })} - - Search - - ) -} +} \ No newline at end of file