import { Heart } from "lucide-react" import { Button } from "@/components/ui/button" import Link from "next/link" interface EmptyFavoritesProps { locale?: string message?: string actionText?: string actionHref?: string } export default function EmptyFavorites({ locale = "ru", message = "No favorite items yet", actionText = "Browse Products", actionHref = "/", }: EmptyFavoritesProps) { return (

{message}

{locale === "ru" ? "Сохраняйте понравившиеся товары, чтобы найти их позже" : "Save items you love to find them later"}

) }