summaryrefslogtreecommitdiff
path: root/src/core/components/elements/NavBar/NavBar.jsx
diff options
context:
space:
mode:
authorRafi Zadanly <zadanlyr@gmail.com>2023-02-17 17:07:50 +0700
committerRafi Zadanly <zadanlyr@gmail.com>2023-02-17 17:07:50 +0700
commitf99e0aba70efad0deb907d8e27f09fc9f527c8a4 (patch)
treef0ac96e4e736a1d385e32553f0e641ee27e11fd3 /src/core/components/elements/NavBar/NavBar.jsx
parent90e1edab9b6a8ccc09a49fed3addbec2cbc4e4c3 (diff)
Refactor
Diffstat (limited to 'src/core/components/elements/NavBar/NavBar.jsx')
-rw-r--r--src/core/components/elements/NavBar/NavBar.jsx31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/core/components/elements/NavBar/NavBar.jsx b/src/core/components/elements/NavBar/NavBar.jsx
new file mode 100644
index 00000000..212fd341
--- /dev/null
+++ b/src/core/components/elements/NavBar/NavBar.jsx
@@ -0,0 +1,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 \ No newline at end of file