import { useTranslations } from "next-intl"; import { motion } from "framer-motion"; // Empty State Component export function EmptyServices() { const t = useTranslations(); return (
{t("home.services.noData.title") || "Xizmatlar topilmadi"} {t("home.services.noData.description") || "Hozircha hech qanday xizmat mavjud emas. Tez orada yangi xizmatlar qo'shiladi."}
); }