Merge version_4 into main

Merge version_4 into main
This commit was merged in pull request #14.
This commit is contained in:
2026-06-03 10:41:39 +00:00
3 changed files with 4 additions and 4 deletions

View File

@@ -28,7 +28,7 @@ export default function AdminPanelPage() {
{ name: "Productos", id: "products" },
{ name: "Ventajas", id: "features" },
{ name: "Profesionales", id: "professionals" },
{ name: "Admin", href: "/admin" },
{ name: "Admin", id: "/admin" },
{ name: "Contacto", id: "contact" }
]}
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3EccHcmLBLfaDNDp5ChTlQGMJOM/uploaded-1780481858970-vnz8dv02.png"

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

View File

@@ -42,7 +42,7 @@ export default function LandingPage() {
{
name: "Profesionales", id: "professionals"},
{
name: "Admin", href: "/admin"},
name: "Admin", id: "/admin"},
{
name: "Contacto", id: "contact"},
]}