Features

Feature 1

Cheapest basket 25 years running

Get your order delivered to your doorstep at the earliest from FreshCart pickup stores near you.

Best Prices & Offers

Cheaper prices than your local supermarket, great cashback offers to top it off.

Wide Assortment

Choose from 5000+ products across food, personal care, household & other categories

Shop with our app

Shop on the go with our app for tablet and mobile . Get live order tracking. Get latest feature updates

Want your shopping today?

Choose from our award winning Express delivery or collection options.

Easy Returns/Refund

Not satisfied with a product? Return it at the doorstep & get a refund within hours. No questions asked policy

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

// import custom components
import CompanyFeaturedCard2 from "components/cards/CompanyFeaturedCard2";

// import required data file
import { companyFeaturedData } from "data/CompanyFeaturedData";

const Page = () => {
  return (
    <section className="my-lg-14 my-8">
      <Container>
        <Row className="align-items-center">
          {companyFeaturedData.map((item, index) => (
            <Col key={item.id} lg={4} md={6} xs={12}>
              <CompanyFeaturedCard2
                item={item}
                className={`${index != 2 && index != 5 ? "border-end-lg" : ""}`}
              />
            </Col>
          ))}
        </Row>
      </Container>
    </section>
  );
};

export default Page;

Feature 2

10 minute grocery now

Get your order delivered to your doorstep at the earliest from FreshCart pickup stores near you.

Best Prices & Offers

Cheaper prices than your local supermarket, great cashback offers to top it off. Get best pricess & offers.

Wide Assortment

Choose from 5000+ products across food, personal care, household, bakery, veg and non-veg & other categories.

Easy Returns

Not satisfied with a product? Return it at the doorstep & get a refund within hours. No questions asked policy .

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

// import custom components
import CompanyFeatureCard from "components/cards/CompanyFeatureCard";

// import required data files
import { whyChooseData } from "data/WhyChooseData";

const Page = () => {
  return (
    <section class="my-lg-14 my-8">
      <Container>
        <Row>
          {whyChooseData.map((item) => (
            <Col md={6} lg={3} key={item.id}>
              <CompanyFeatureCard item={item} />
            </Col>
          ))}
        </Row>
      </Container>
    </section>
  );
};

export default Page;