From 1ef538546c0bdd9351baaed90b837f399584b460 Mon Sep 17 00:00:00 2001 From: Rafi Zadanly Date: Mon, 13 Mar 2023 16:20:18 +0700 Subject: category, brand, product popular, product category in desktop home page --- src/core/components/elements/Navbar/Navbar.jsx | 192 +------------------------ 1 file changed, 4 insertions(+), 188 deletions(-) (limited to 'src/core/components/elements/Navbar/Navbar.jsx') diff --git a/src/core/components/elements/Navbar/Navbar.jsx b/src/core/components/elements/Navbar/Navbar.jsx index 1c559faf..57904498 100644 --- a/src/core/components/elements/Navbar/Navbar.jsx +++ b/src/core/components/elements/Navbar/Navbar.jsx @@ -1,197 +1,13 @@ import dynamic from 'next/dynamic' -import Image from 'next/image' -import IndoteknikLogo from '@/images/logo.png' -import { - Bars3Icon, - ChevronDownIcon, - DocumentCheckIcon, - HeartIcon, - ShoppingCartIcon -} from '@heroicons/react/24/outline' -import Link from '../Link/Link' -import useSidebar from '@/core/hooks/useSidebar' -import MobileView from '../../views/MobileView' -import DesktopView from '../../views/DesktopView' -const Search = dynamic(() => import('./Search')) +const NavbarDesktop = dynamic(() => import('./NavbarDesktop')) +const NavbarMobile = dynamic(() => import('./NavbarMobile')) const Navbar = () => { - const { Sidebar, open } = useSidebar() return ( <> - - - {Sidebar} - - - -
-
- - Tentang Indoteknik.com - -
- - Pembayaran Tempo - - - F.A.Q - - - Fitur Layanan - -
-
-
- - - -
-
-
-
Kategori Produk
- -
-
- - Promo Produk - - - Semua Brand - - - Ready Stock - - - Blog Indoteknik - -
-
- - Masuk - - - Daftar - -
-
-
-
+ + ) } -- cgit v1.2.3