From f1d9a308f61e67f4c896608e73ac8413f61fa8af Mon Sep 17 00:00:00 2001 From: Rafi Zadanly Date: Wed, 11 Oct 2023 10:22:11 +0700 Subject: Add breadcrumb on detail product, search, brand, category page --- src/pages/shop/cart.jsx | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'src/pages/shop/cart.jsx') diff --git a/src/pages/shop/cart.jsx b/src/pages/shop/cart.jsx index a7f2037b..2da58c96 100644 --- a/src/pages/shop/cart.jsx +++ b/src/pages/shop/cart.jsx @@ -3,7 +3,9 @@ import BasicLayout from '@/core/components/layouts/BasicLayout' import DesktopView from '@/core/components/views/DesktopView' import MobileView from '@/core/components/views/MobileView' import IsAuth from '@/lib/auth/components/IsAuth' +import { Breadcrumb, BreadcrumbItem, BreadcrumbLink } from '@chakra-ui/react' import dynamic from 'next/dynamic' +import Link from 'next/link' const AppLayout = dynamic(() => import('@/core/components/layouts/AppLayout')) const CartComponent = dynamic(() => import('@/lib/cart/components/Cart')) @@ -22,6 +24,19 @@ export default function Cart() { +
+ + + + Home + + + + + Keranjang + + +
-- cgit v1.2.3