// Copyright The OpenTelemetry Authors // SPDX-License-Identifier: Apache-2.0 import Link from 'next/link'; import Button from '../Button'; import * as S from '../../styles/Cart.styled'; const EmptyCart = () => { return ( Your shopping cart is empty! Items you add to your shopping cart will appear here. ); }; export default EmptyCart;