blob: 212fd3419878e869ac75a7b34c8bc28bf810558c (
plain)
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
28
29
30
31
|
import Image from "next/image"
import IndoteknikLogo from "@/images/logo.png"
import { Bars3Icon, HeartIcon, ShoppingCartIcon } from "@heroicons/react/24/outline"
import Link from "../Link/Link"
import Search from "./Search"
const NavBar = () => {
return (
<nav className="px-4 py-2 pb-3 sticky top-0 z-50 bg-white shadow">
<div className="flex justify-between items-center mb-2">
<Link href="/">
<Image src={IndoteknikLogo} alt="Indoteknik Logo" width={120} height={40} />
</Link>
<div className="flex gap-x-3">
<button type="button">
<HeartIcon className="w-6 text-gray_r-12" />
</button>
<Link href="/shop/cart">
<ShoppingCartIcon className="w-6 text-gray_r-12" />
</Link>
<button type="button">
<Bars3Icon className="w-6 text-gray_r-12" />
</button>
</div>
</div>
<Search />
</nav>
)
}
export default NavBar
|