import { Search } from "lucide-react" import { Button } from "@/components/ui/button" import Link from "next/link" interface EmptySearchProps { locale?: string query?: string message?: string actionText?: string actionHref?: string } export default function EmptySearch({ locale = "ru", query = "", message = "No results found", actionText = "Back to Home", actionHref = "/", }: EmptySearchProps) { return (
{locale === "ru" ? `No products found for "${query}"` : `No products found for "${query}"`}
)}