"use client"; import Button from "@/app/components/Button"; import ProductImage from "@/assets/images/product_image.png"; import Image from "next/image"; import { type FC } from "react"; import { Rating } from "react-simple-star-rating"; type ProductCardProps = { title?: string; }; const ProductCard: FC = ({ title = "جعبه کیبوردی" }) => { return (
{title}
{title}
4.5
قیمت از
10,000,000
1,000,000 تومان
); }; export default ProductCard;