Update src/app/checkout/page.tsx

This commit is contained in:
2026-06-03 10:41:35 +00:00
parent f4fe914fe9
commit f80295d4fd

View File

@@ -9,13 +9,13 @@ import { ShoppingBag, CreditCard, DollarSign, Truck } from "lucide-react";
export default function CheckoutPage() {
const navItems = [
{ name: "Inicio", href: "/" },
{ name: "Inicio", id: "/" },
{ name: "Nuestra Historia", id: "about" },
{ name: "Productos", id: "products" },
{ name: "Ventajas", id: "features" },
{ name: "Profesionales", id: "professionals" },
{ name: "Contacto", id: "contact" },
{ name: "Checkout", href: "/checkout" },
{ name: "Checkout", id: "/checkout" },
];
// Dummy order data - in a real app, this would come from a cart state or API