"use client"; import { ProductTypes } from "@/types"; import Image from "next/image"; import Link from "next/link"; import Text from "../lib_components/text"; import { useParams } from "next/navigation"; import { motion } from "framer-motion"; export default function ProductCard({ data }: { data: ProductTypes }) { const { lang } = useParams(); return ( {/* Yuqori qism - rasm */}
{data.truck_name}
{/* Pastki qism - matn */}
); }