Shipping Info Cards

Shipping & Returns

Free Shipping

Free shipping on all orders

Fast Delivery

2-5 business days delivery time

Order Tracking

Track your order in real-time

Easy Returns

30-day hassle-free return policy

About this block

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

  • icon selects from a fixed four-entry map (truck → Truck, clock → Clock, location → MapPin, shield → Shield); omitting icon on an option still renders the Truck icon as a fallback rather than no icon at all.
  • The grid is a static sm:grid-cols-2 lg:grid-cols-4, not the dynamic column-count logic used elsewhere in the Ecommerce category, so a 3-item options array leaves an empty fourth slot on large screens instead of re-flowing to 3 columns.
  • No shadcn/ui primitives are used: each card is a hand-rolled rounded-lg border bg-card p-6 box, which is why this block declares no registryDependencies.
  • The block is purely presentational: there's no callback prop of any kind, so nothing here is clickable beyond the page's own default cursor behavior.

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.

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

ecommerce27

Category Cards Grid

Category collection grid with overlay images, item counts, and shop now links. Perfect for homepage category navigation and collection 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

ecommerce33

Collection Showcase Grid

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