Update src/app/reservations/page.tsx

This commit is contained in:
2026-03-03 15:24:41 +00:00
parent d3d88849e1
commit 1b43d8f27e

View File

@@ -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 (
<ThemeProvider
@@ -44,19 +42,19 @@ export default function ReservationsPage() {
<div id="contact" data-section="contact">
<ContactSplit
tag="Get In Touch"
tag="Ponte en Contacto"
tagIcon={Mail}
title="Reserve Your Table"
description="Book your next memorable dining experience at El Torito D'Capris. Contact us via WhatsApp, phone, or our reservation form. We look forward to welcoming you and your family!"
title="Reserva Tu Mesa"
description="Reserva tu próxima experiencia gastronómica memorable en El Torito D'Capris. Contáctanos vía WhatsApp, teléfono o nuestro formulario de reservación. ¡Esperamos darte la bienvenida a ti y tu familia!"
background={{ variant: "sparkles-gradient" }}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/tourist-pointed-their-finger-map_1150-24541.jpg?_wi=2"
imageAlt="Location in Trujillo, Peru"
imageAlt="Ubicación en Trujillo, Perú"
mediaAnimation="slide-up"
mediaPosition="right"
inputPlaceholder="your@email.com"
buttonText="Reserve Now"
termsText="We respect your privacy. We'll contact you within 2 hours during business hours."
inputPlaceholder="tu@email.com"
buttonText="Reserva Ahora"
termsText="Respetamos tu privacidad. Nos pondremos en contacto dentro de 2 horas durante horario de negocios."
/>
</div>
@@ -64,15 +62,11 @@ export default function ReservationsPage() {
<FooterLogoReveal
logoText="El Torito D'Capris"
leftLink={{
text: "WhatsApp: +51 933 764 795",
href: "https://wa.me/51933764795",
}}
text: "WhatsApp: +51 933 764 795", href: "https://wa.me/51933764795"}}
rightLink={{
text: "Follow us on Facebook",
href: "https://facebook.com/eltorito.dcapris",
}}
text: "Síguenos en Facebook", href: "https://facebook.com/eltorito.dcapris"}}
/>
</div>
</ThemeProvider>
);
}
}