import { Package } from "lucide-react" import { Button } from "@/components/ui/button" import Link from "next/link" interface EmptyOrdersProps { locale?: string message?: string actionText?: string actionHref?: string } export default function EmptyOrders({ locale = "ru", message = "No orders yet", actionText = "Start Shopping", actionHref = "/", }: EmptyOrdersProps) { return (
{locale === "ru" ? "У вас еще нет заказов. Начните покупки прямо сейчас!" : "You haven't placed any orders yet. Start shopping now!"}