171 lines
8.8 KiB
TypeScript
171 lines
8.8 KiB
TypeScript
"use client";
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
|
import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard';
|
|
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
|
|
import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix';
|
|
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
|
|
import ContactText from '@/components/sections/contact/ContactText';
|
|
import PricingCardNine from '@/components/sections/pricing/PricingCardNine';
|
|
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
|
|
import { ChefHat, Heart, Leaf, MessageCircle, Smile, Sparkles, Star, Utensils, Users, Wine, Phone, Clock, MapPin } from 'lucide-react';
|
|
|
|
export default function LandingPage() {
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="bounce-effect"
|
|
defaultTextAnimation="background-highlight"
|
|
borderRadius="pill"
|
|
contentWidth="small"
|
|
sizing="mediumLargeSizeLargeTitles"
|
|
background="circleGradient"
|
|
cardStyle="gradient-radial"
|
|
primaryButtonStyle="flat"
|
|
secondaryButtonStyle="radial-glow"
|
|
headingFontWeight="extrabold"
|
|
>
|
|
<div id="nav" data-section="nav">
|
|
<NavbarStyleApple
|
|
brandName="Madeira Lounge"
|
|
navItems={[
|
|
{ name: "Sobre nosotros", id: "about" },
|
|
{ name: "Servicios", id: "services" },
|
|
{ name: "Reseñas", id: "testimonials" },
|
|
{ name: "Contacto", id: "contact" },
|
|
{ name: "Reservar", id: "reservation" }
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="hero" data-section="hero">
|
|
<HeroLogoBillboard
|
|
logoText="Madeira Lounge"
|
|
description="Sabores mediterráneos en el corazón de Carcaixent. Cocina de calidad, cócteles únicos y una terraza para disfrutar."
|
|
buttons={[
|
|
{ text: "Reservar ahora", href: "#reservation" },
|
|
{ text: "Ver carta", href: "https://madeiralounge.es" }
|
|
]}
|
|
background={{ variant: "plain" }}
|
|
videoSrc="http://img.b2bpic.net/free-photo/side-view-hands-mixing-salad_23-2149412506.jpg"
|
|
videoAriaLabel="Madeira Lounge - platos, cócteles y ambiente de terraza"
|
|
mediaAnimation="slide-up"
|
|
frameStyle="card"
|
|
/>
|
|
</div>
|
|
|
|
<div id="about" data-section="about">
|
|
<InlineImageSplitTextAbout
|
|
heading={[
|
|
{ type: "text", content: "Experiencia gastronómica de calidad con" },
|
|
{ type: "image", src: "http://img.b2bpic.net/free-photo/confident-young-indian-man-black-shirt-standing-cafe_627829-5462.jpg", alt: "Interior del restaurante Madeira Lounge" },
|
|
{ type: "text", content: "ambiente cuidado en Carcaixent" }
|
|
]}
|
|
useInvertedBackground={false}
|
|
buttons={[
|
|
{ text: "Conoce más", href: "#services" }
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="services" data-section="services">
|
|
<FeatureCardTwentySix
|
|
features={[
|
|
{
|
|
title: "Terraza Amplia", description: "Espacio exterior cómodo y acogedor para disfrutar de la brisa mediterránea", imageSrc: "http://img.b2bpic.net/free-photo/beach-restaurant-evening_661209-253.jpg?_wi=1", imageAlt: "Terraza del restaurante Madeira Lounge", buttonIcon: Wine
|
|
},
|
|
{
|
|
title: "Cócteles de Autor", description: "Creaciones únicas elaboradas por nuestros bartenders expertos", imageSrc: "http://img.b2bpic.net/free-photo/front-view-bartender-making-drink_140725-14311.jpg", imageAlt: "Cócteles artesanales en Madeira Lounge", buttonIcon: Sparkles
|
|
},
|
|
{
|
|
title: "Opciones Veganas", description: "Platos sabrosos y nutritivos para todos nuestros huéspedes", imageSrc: "http://img.b2bpic.net/free-photo/autumn-seasonal-warm-salad-with-vegetables_1220-7734.jpg", imageAlt: "Platos veganos en Madeira Lounge", buttonIcon: Leaf
|
|
},
|
|
{
|
|
title: "Cocina Premium", description: "Ingredientes frescos seleccionados con pasión mediterránea", imageSrc: "http://img.b2bpic.net/free-photo/chicken-breast-with-cheese-grilled-vegetables_141793-1149.jpg", imageAlt: "Plato signature en Madeira Lounge", buttonIcon: ChefHat
|
|
}
|
|
]}
|
|
title="Servicios Destacados"
|
|
description="Disfruta de la mejor experiencia gastronómica en Carcaixent"
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
tag="Servicios"
|
|
tagAnimation="slide-up"
|
|
buttonAnimation="slide-up"
|
|
/>
|
|
</div>
|
|
|
|
<div id="testimonials" data-section="testimonials">
|
|
<TestimonialCardTwo
|
|
testimonials={[
|
|
{
|
|
id: "1", name: "María García", role: "Cliente habitual", testimonial: "Excelente comida, ambiente tranquilo y acogedor. Los cócteles son increíbles. Volveré seguro.", icon: MessageCircle
|
|
},
|
|
{
|
|
id: "2", name: "Juan López", role: "Empresario", testimonial: "Perfecto para comidas de negocios. Personal atento, buena presentación y precio acorde. Recomendado.", icon: Heart
|
|
},
|
|
{
|
|
id: "3", name: "Elena Rodríguez", role: "Pareja de viaje", testimonial: "Una cena romántica inolvidable en la terraza. Vistas hermosas y comida deliciosa. ¡Gracias!", icon: Star
|
|
},
|
|
{
|
|
id: "4", name: "Carlos Martín", role: "Vecino de Carcaixent", testimonial: "Es nuestro lugar favorito para cenar. La cocina es fresca, auténtica y el ambiente es inmejorable.", icon: Smile
|
|
},
|
|
{
|
|
id: "5", name: "Sofía Chen", role: "Amiga de grupo", testimonial: "Reuniones con amigos siempre son especiales aquí. Variedad de opciones y servicio impecable.", icon: Users
|
|
},
|
|
{
|
|
id: "6", name: "David Sánchez", role: "Foodie local", testimonial: "Sabores mediterráneos auténticos con toque moderno. Definitivamente uno de los mejores en Valencia.", icon: Utensils
|
|
}
|
|
]}
|
|
title="Reseñas de Nuestros Clientes"
|
|
description="4,4 ⭐ con más de 650 reseñas verificadas"
|
|
tag="Valoraciones"
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
animationType="slide-up"
|
|
carouselMode="buttons"
|
|
/>
|
|
</div>
|
|
|
|
<div id="contact" data-section="contact">
|
|
<ContactText
|
|
text="¿Listo para una experiencia gastronómica inolvidable? Reserva tu mesa hoy mismo o ponte en contacto con nosotros."
|
|
animationType="entrance-slide"
|
|
buttons={[
|
|
{ text: "Reservar ahora", href: "#reservation" },
|
|
{ text: "Llamar: 697 67 08 89", href: "tel:697670889" }
|
|
]}
|
|
background={{ variant: "plain" }}
|
|
useInvertedBackground={false}
|
|
/>
|
|
</div>
|
|
|
|
<div id="reservation" data-section="reservation">
|
|
<PricingCardNine
|
|
plans={[
|
|
{
|
|
id: "direct-contact", title: "Reserva Directa", price: "Llamar", period: "Ahora", imageSrc: "http://img.b2bpic.net/free-photo/beach-restaurant-evening_661209-253.jpg?_wi=2", imageAlt: "Terraza Madeira Lounge", button: { text: "📞 697 67 08 89", href: "tel:697670889" },
|
|
features: [
|
|
"Disponibilidad inmediata", "Confirmación por teléfono", "Atencion personalizada", "Sin intermediarios", "Reservas especiales disponibles", "Horarios flexibles"
|
|
]
|
|
}
|
|
]}
|
|
animationType="slide-up"
|
|
title="Reserva tu Mesa Ahora"
|
|
description="Contacta directamente con nosotros para garantizar tu reserva en Madeira Lounge"
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
tag="Reservas"
|
|
/>
|
|
</div>
|
|
|
|
<div id="footer" data-section="footer">
|
|
<FooterLogoReveal
|
|
logoText="Madeira Lounge"
|
|
leftLink={{ text: "Política de Privacidad", href: "#" }}
|
|
rightLink={{ text: "Términos de Servicio", href: "#" }}
|
|
/>
|
|
</div>
|
|
</ThemeProvider>
|
|
);
|
|
}
|