Shipping Info CardsFREE

Icon cards displaying shipping, delivery, tracking, and returns policies. Perfect for product pages and checkout information.

Ecommerce15: Shipping Info Cards

Row of icon cards summarizing shipping, delivery, tracking, and returns policy, meant for product pages or checkout, built entirely with hand-rolled cards and Lucide icons with no shadcn/ui dependency at all.

Free block

This block is free. No license or account is required: install it with the CLI and use it in unlimited projects.

Installation

Radix flavor

bash
npx shadcn add "https://ui.beste.co/r/ecommerce15"

Base UI flavor

bash
npx shadcn add "https://ui.beste.co/r-base/ecommerce15"

This installs the block file and its dependencies.

Quick start

The installed file exports ecommerce15Demo alongside the block: the exact props behind the preview above. Spread it to get a working info-cards row in one line.

tsx
import { Ecommerce15, ecommerce15Demo } from "@/components/beste/block/ecommerce15";

export default function ProductPage() {
  return <Ecommerce15 {...ecommerce15Demo} />;
}

Then replace the demo with your own props. Written out, a trimmed setup looks like this:

tsx
import { Ecommerce15 } from "@/components/beste/block/ecommerce15";

export default function ProductPage() {
  return (
    <Ecommerce15
      heading="Shipping & Returns"
      options={[
        { icon: "truck", title: "Free Shipping", description: "On all orders over $50" },
        { icon: "shield", title: "Easy Returns", description: "30-day return policy" },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
headingstringSection heading above the card row
optionsShippingOption[][]Icon cards rendered in the grid
classNamestringExtra classes for the outer <section>
ts
type ShippingOption = {
  icon?: "truck" | "clock" | "location" | "shield";
  title: string;
  description: string;
};

Behavior notes

More Ecommerce blocks

View all Ecommerce
PRO

ecommerce17

Order History List

Order cards with status badges, dates, and item counts with view details links. Perfect for customer account dashboards and order tracking.

PRO

ecommerce3

Shopping Cart with Summary

Cart page with item cards, quantity controls, and order summary with shipping calculation. Perfect for checkout flows and cart review pages.

FREE

ecommerce1

Product Card Grid

Responsive product grid with ratings, sale badges, and add to cart buttons. Perfect for shop pages and product catalogs.

PRO

ecommerce36

Trust Badges Section

Icon badges for shipping, returns, security, and support in default, compact, or detailed variants. Perfect for building trust near checkout buttons.

PRO

ecommerce33

Collection Showcase Grid

Featured collection card with supporting collection tiles, image overlays, and product counts. Perfect for homepage collection highlights.

PRO

ecommerce27

Category Cards Grid

Category collection grid with overlay images, item counts, and shop now links. Perfect for homepage category navigation and collection pages.