import { ShoppingCart } from "lucide-react" import { Button } from "@/components/ui/button" import Link from "next/link" interface EmptyCartProps { locale?: string message?: string actionText?: string actionHref?: string } export default function EmptyCart({ locale = "ru", message = "Your cart is empty", actionText = "Start Shopping", actionHref = "/", }: EmptyCartProps) { return (

{message}

{locale === "ru" ? "Добавьте товары в корзину, чтобы начать покупки" : "Add items to your cart to start shopping"}

) }