diff options
| author | Rafi Zadanly <zadanlyr@gmail.com> | 2023-02-19 22:06:00 +0700 |
|---|---|---|
| committer | Rafi Zadanly <zadanlyr@gmail.com> | 2023-02-19 22:06:00 +0700 |
| commit | d0d2a927fa1b9ac0a0e571f6e6f1294445db66a4 (patch) | |
| tree | 1898f8205265a7e800aeeac28e2b145dea45d7de /src/core/components/elements/NavBar/NavBar.jsx | |
| parent | 67582cf3274929359eebe849b2fbeda4f3a8f630 (diff) | |
fix
Diffstat (limited to 'src/core/components/elements/NavBar/NavBar.jsx')
| -rw-r--r-- | src/core/components/elements/NavBar/NavBar.jsx | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/src/core/components/elements/NavBar/NavBar.jsx b/src/core/components/elements/NavBar/NavBar.jsx deleted file mode 100644 index 212fd341..00000000 --- a/src/core/components/elements/NavBar/NavBar.jsx +++ /dev/null @@ -1,31 +0,0 @@ -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 |
