"use client"; import Link from "next/link"; import { motion } from "framer-motion"; import { FileSearch } from "lucide-react"; import { useLanguage } from "@/context/language-context"; //salomalr export default function EmptyState() { const { t } = useLanguage(); const container = { hidden: { opacity: 0, y: 8 }, show: { opacity: 1, y: 0, transition: { staggerChildren: 0.06 } }, }; return (
{/* Illustration / Icon */} {/* Content */}

{t.empty_data.title || "Hech narsa topilmadi"}

{t.empty_data.description}

{t.empty_data.back || "Bosh sahifa"}
); }