Reviews

Reviews

Customer reviews

4.1 out of 511,130 global ratings
5
53%
4
22%
3
14%
2
5%
1
7%
"use client";
// import custom component
import ReviewSummary from "components/reviews/ReviewSummary";

const Page = () => {
  return <ReviewSummary writeBtn={false} />;
};

export default Page;

Reviews #2

Review this product

Share your thoughts with other customers.

Write the Review
"use client";
// import custom component
import ReviewButton from "components/reviews/ReviewButton";

const Page = () => {
  return <ReviewButton />;
};

export default Page;

Reviews #3

Reviews

Shankar Subbaraman

30 December 2022Verified Purchase

Need to recheck the weight at delivery point

Product quality is good. But, weight seemed less than 1kg. Since it is being sent in open package, there is a possibility of pilferage in between. FreshCart sends the veggies and fruits through sealed plastic covers and Barcode on the weight etc. .

Robert Thomas

29 December 2022Unverified Purchase

Need to recheck the weight at delivery point

Product quality is good. But, weight seemed less than 1kg. Since it is being sent in open package, there is a possibility of pilferage in between. FreshCart sends the veggies and fruits through sealed plastic covers and Barcode on the weight etc. .

"use client";
// import node module libraries
import { Col } from "react-bootstrap";

// import custom component
import FilterReview from "components/reviews/FilterReview";
import SingleReview from "components/reviews/SingleReview";

// import required data file
import { reviewsData } from "data/ReviewsData";

const Page = () => {
  return (
    <Col md={8}>
      <div className="mb-10">
        <FilterReview />
        {reviewsData.slice(0, 2).map((review, index) => {
          return <SingleReview data={review} key={review.id} index={index} />;
        })}
      </div>
    </Col>
  );
};

export default Page;

Reviews #4

Create Review

Overall rating

Rate Features

Flavor
Value for money
Scent
Add a headline
Add a photo or video

Shoppers find images and videos more helpful than text alone.

Add a written review
"use client";

// import custom components
import CreateReview from "components/reviews/CreateReview";

const Page = () => {
  return <CreateReview />;
};

export default Page;