import { Landmark, Infinity, Key } from "lucide-react"; const CARDS = [ { icon: Landmark, title: "Money without banks", description: "Operate outside the legacy financial system with peer-to-peer digital sound money.", }, { icon: Infinity, title: "Scarcity: 21 million", description: "A mathematical certainty of fixed supply. No inflation, no dilution, ever.", }, { icon: Key, title: "Self-custody", description: "True ownership. Your keys, your bitcoin. No counterparty risk, absolute freedom.", }, ]; export function KnowledgeCards() { return (
{CARDS.map((card) => (

{card.title}

{card.description}

))}
); }