import React from 'react'; import { ShoppingBag } from 'lucide-react'; import Link from 'next/link'; const EmptyCart = () => { return (

SHOPPING CART

Your cart is empty

Looks like you haven't added any items to your cart yet

Continue Shopping
); }; export default EmptyCart;