'use client' import {useTranslations} from 'next-intl' import CartItems from '@/components/pages/cart/items' export default function Cart() { const t = useTranslations('cart') // const subtotal = items.reduce( // (total, item) => total + item.price * item.quantity, // 0 // ) // const total = subtotal return (

{t('basket')}

{t('title')}
{t('quantity')}
{t('amount')}
) }