Spaces:
Paused
Paused
import Image from "next/image"; | |
import SearchBox from "./SearchBox"; | |
import SearchHeaderOptions from "./SearchHeaderOptions"; | |
export default function SearchHeader() { | |
return ( | |
<header className="sticky top-0 bg-white"> | |
<div className="flex w-full p-6 items-center justify-between"> | |
<SearchBox /> | |
</div> | |
<SearchHeaderOptions /> | |
</header> | |
); | |
} | |