"use client"; /** * Customer confidence booster: trust badges (Free Shipping, Easy Returns, Secure Checkout). * Rendered below product grids on shop pages and homepage. PetPaws theme, mobile-first. */ export function CustomerConfidenceBooster() { const items: { title: string; subheading: string; icon: React.ReactNode }[] = [ { title: "Free Shipping", subheading: "No extra costs (T&C apply)", icon: ( ), }, { title: "Easy Returns", subheading: "Return with ease", icon: ( ), }, { title: "Secure Checkout", subheading: "Secure payment", icon: ( ), }, ]; return (
{items.map(({ title, subheading, icon }) => (
{icon}
{title} {subheading}
))}
); }