diff --git a/src/app/reservations/page.tsx b/src/app/reservations/page.tsx index 786b2e0..66b9ea7 100644 --- a/src/app/reservations/page.tsx +++ b/src/app/reservations/page.tsx @@ -9,17 +9,15 @@ import { Mail } from "lucide-react"; export default function ReservationsPage() { const navItems = [ - { name: "Home", id: "/" }, - { name: "About", id: "about" }, - { name: "Menu", id: "menu" }, - { name: "Gallery", id: "gallery" }, - { name: "Contact", id: "contact" }, + { name: "Inicio", id: "hero" }, + { name: "Acerca de", id: "about" }, + { name: "Menú", id: "menu" }, + { name: "Galería", id: "gallery" }, + { name: "Contacto", id: "contact" }, ]; const navButton = { - text: "Reserve a Table", - href: "/reservations", - }; + text: "Reservar Mesa", href: "/reservations"}; return ( @@ -64,15 +62,11 @@ export default function ReservationsPage() { ); -} \ No newline at end of file +}