/** * The three cards along the bottom. */ import { __ } from "@wordpress/i18n"; import Icon from "./Icon"; import ProBadge from "./ProBadge"; export default function BuildCards({ cards }) { return (

{__("Build with WPSubscription", "subscription")}

{__("Everything you need to grow recurring revenue.", "subscription")}

{cards.map((card) => ( {card.eyebrow} {/* A real space, so the card's name reads "Insight Pro" and not "InsightPro". */} {card.pro && " "} {card.pro && } {card.title} {card.text} {card.link.label} {card.link.external ? : } ))}
); }