feat: agregar botones a CardPizza

This commit is contained in:
Sofía Maturana 2026-03-26 10:48:35 -03:00
parent 19bac6ffa3
commit 8096bd2af4

View file

@ -15,7 +15,10 @@ const CardPizza = (props) => (
<p className="font-bold text-green-700"> <p className="font-bold text-green-700">
${props.price.toLocaleString("es-CL")} ${props.price.toLocaleString("es-CL")}
</p> </p>
<div className="flex"></div> <div className="flex gap-4">
<button className="border-black border-2 rounded-md px-4">Ver más</button>
<button className="bg-black text-white rounded-md px-4">Añadir</button>
</div>
</article> </article>
); );