Update src/app/checkout/page.tsx
This commit is contained in:
@@ -9,13 +9,13 @@ import { ShoppingBag, CreditCard, DollarSign, Truck } from "lucide-react";
|
|||||||
|
|
||||||
export default function CheckoutPage() {
|
export default function CheckoutPage() {
|
||||||
const navItems = [
|
const navItems = [
|
||||||
{ name: "Inicio", href: "/" },
|
{ name: "Inicio", id: "/" },
|
||||||
{ name: "Nuestra Historia", id: "about" },
|
{ name: "Nuestra Historia", id: "about" },
|
||||||
{ name: "Productos", id: "products" },
|
{ name: "Productos", id: "products" },
|
||||||
{ name: "Ventajas", id: "features" },
|
{ name: "Ventajas", id: "features" },
|
||||||
{ name: "Profesionales", id: "professionals" },
|
{ name: "Profesionales", id: "professionals" },
|
||||||
{ name: "Contacto", id: "contact" },
|
{ 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
|
// Dummy order data - in a real app, this would come from a cart state or API
|
||||||
|
|||||||
Reference in New Issue
Block a user