Spaces:
Paused
Paused
File size: 662 Bytes
c0c5f59 054d282 c0c5f59 054d282 c0c5f59 054d282 c0c5f59 054d282 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
import Link from "next/link";
import Image from "next/image";
import SearchBox from "./SearchBox";
import { logo } from "@/util";
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">
<Link href={"/"}>
<Image
width="120"
height="40"
src={`/logo${logo()}.png`}
/>
</Link>
<div className="flex-1">
<SearchBox />
</div>
</div>
<SearchHeaderOptions />
</header>
);
}
|