'use client'; import { Button } from '@/components/ui/Button'; import { Section } from '@/components/ui/Section'; import { Heading, Text } from '@/components/ui/Typography'; import { useTranslation } from '@/lib/hooks/useTranslation'; export function EmptyCartMessage() { const { t } = useTranslation(); return (
{t('cart.emptyCart')} Add some items to your cart to see them here.
); }