Update src/app/reservations/page.tsx

This commit is contained in:
2026-03-03 15:23:04 +00:00
parent 1c3ff9f0d8
commit aee9263135

View File

@@ -9,17 +9,15 @@ import { Mail } from "lucide-react";
export default function ReservationsPage() { export default function ReservationsPage() {
const navItems = [ const navItems = [
{ name: "Home", id: "/" }, { name: "Inicio", id: "hero" },
{ name: "About", id: "about" }, { name: "Acerca de", id: "about" },
{ name: "Menu", id: "menu" }, { name: "Menú", id: "menu" },
{ name: "Gallery", id: "gallery" }, { name: "Galería", id: "gallery" },
{ name: "Contact", id: "contact" }, { name: "Contacto", id: "contact" },
]; ];
const navButton = { const navButton = {
text: "Reserve a Table", text: "Reservar Mesa", href: "/reservations"};
href: "/reservations",
};
return ( return (
<ThemeProvider <ThemeProvider
@@ -44,19 +42,19 @@ export default function ReservationsPage() {
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<ContactSplit <ContactSplit
tag="Get In Touch" tag="Ponte en Contacto"
tagIcon={Mail} tagIcon={Mail}
title="Reserve Your Table" title="Reserva Tu Mesa"
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!" 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" }} background={{ variant: "sparkles-gradient" }}
useInvertedBackground={false} useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/tourist-pointed-their-finger-map_1150-24541.jpg?_wi=2" 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" mediaAnimation="slide-up"
mediaPosition="right" mediaPosition="right"
inputPlaceholder="your@email.com" inputPlaceholder="tu@email.com"
buttonText="Reserve Now" buttonText="Reserva Ahora"
termsText="We respect your privacy. We'll contact you within 2 hours during business hours." termsText="Respetamos tu privacidad. Nos pondremos en contacto dentro de 2 horas durante horario de negocios."
/> />
</div> </div>
@@ -64,15 +62,11 @@ export default function ReservationsPage() {
<FooterLogoReveal <FooterLogoReveal
logoText="El Torito D'Capris" logoText="El Torito D'Capris"
leftLink={{ leftLink={{
text: "WhatsApp: +51 933 764 795", text: "WhatsApp: +51 933 764 795", href: "https://wa.me/51933764795"}}
href: "https://wa.me/51933764795",
}}
rightLink={{ rightLink={{
text: "Follow us on Facebook", text: "Síguenos en Facebook", href: "https://facebook.com/eltorito.dcapris"}}
href: "https://facebook.com/eltorito.dcapris",
}}
/> />
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }