Merge version_1 into main #1
386
src/app/page.tsx
386
src/app/page.tsx
@@ -13,289 +13,125 @@ import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCar
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="rounded"
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{
|
||||
name: "Inicio",
|
||||
id: "hero",
|
||||
},
|
||||
{
|
||||
name: "Sobre Nosotros",
|
||||
id: "about",
|
||||
},
|
||||
{
|
||||
name: "Menú",
|
||||
id: "menu",
|
||||
},
|
||||
{
|
||||
name: "Contacto",
|
||||
id: "contact",
|
||||
},
|
||||
]}
|
||||
brandName="Romanova"
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{ name: "Inicio", id: "hero" },
|
||||
{ name: "Sobre Nosotros", id: "about" },
|
||||
{ name: "Menú", id: "menu" },
|
||||
{ name: "Contacto", id: "contact" },
|
||||
]}
|
||||
brandName="Romanova"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroCentered
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
title="Sabores que cuentan historias"
|
||||
description="Descubre la esencia de la cocina tradicional con un toque contemporáneo en Restaurante Romanova."
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/friends-eating-conversating-restaurant_23-2148006709.jpg",
|
||||
alt: "Cliente 1",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/close-up-people-celebrating-engagement_23-2149212184.jpg",
|
||||
alt: "Cliente 2",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/medium-shot-friends-sitting-table_23-2149293982.jpg",
|
||||
alt: "Cliente 3",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/beautiful-young-woman-with-long-blonde-hair-holding-delicious-chocolate-muffin-hand_23-2147974685.jpg",
|
||||
alt: "Cliente 4",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/friends-eating-restaurant_23-2148006619.jpg",
|
||||
alt: "Cliente 5",
|
||||
},
|
||||
]}
|
||||
avatarText="Más de 500+ clientes satisfechos"
|
||||
buttons={[
|
||||
{
|
||||
text: "Reservar Mesa",
|
||||
href: "#contact",
|
||||
},
|
||||
{
|
||||
text: "Ver Menú",
|
||||
href: "#menu",
|
||||
},
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text",
|
||||
text: "Ingredientes de Km 0",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Cocina de Autor",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Ambiente Exclusivo",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Bodega Selecta",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Tradición e Innovación",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroCentered
|
||||
background={{ variant: "plain" }}
|
||||
title="Sabores que cuentan historias"
|
||||
description="Descubre la esencia de la cocina tradicional con un toque contemporáneo en Restaurante Romanova."
|
||||
avatars={[
|
||||
{ src: "http://img.b2bpic.net/free-photo/friends-eating-conversating-restaurant_23-2148006709.jpg", alt: "Cliente 1" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/close-up-people-celebrating-engagement_23-2149212184.jpg", alt: "Cliente 2" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/medium-shot-friends-sitting-table_23-2149293982.jpg", alt: "Cliente 3" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/beautiful-young-woman-with-long-blonde-hair-holding-delicious-chocolate-muffin-hand_23-2147974685.jpg", alt: "Cliente 4" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/friends-eating-restaurant_23-2148006619.jpg", alt: "Cliente 5" },
|
||||
]}
|
||||
avatarText="Más de 500+ clientes satisfechos"
|
||||
buttons={[
|
||||
{ text: "Reservar Mesa", href: "#contact" },
|
||||
{ text: "Ver Menú", href: "#menu" },
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
marqueeItems={[
|
||||
{ type: "text", text: "Ingredientes de Km 0" },
|
||||
{ type: "text", text: "Cocina de Autor" },
|
||||
{ type: "text", text: "Ambiente Exclusivo" },
|
||||
{ type: "text", text: "Bodega Selecta" },
|
||||
{ type: "text", text: "Tradición e Innovación" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<InlineImageSplitTextAbout
|
||||
useInvertedBackground={true}
|
||||
heading={[
|
||||
{
|
||||
type: "text",
|
||||
content: "Nuestra Filosofía",
|
||||
},
|
||||
{
|
||||
type: "image",
|
||||
src: "http://img.b2bpic.net/free-photo/male-chef-kitchen-holding-plate-salad_23-2149646219.jpg",
|
||||
alt: "Chef trabajando",
|
||||
},
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
text: "Conoce nuestra historia",
|
||||
href: "#",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="about" data-section="about">
|
||||
<InlineImageSplitTextAbout
|
||||
useInvertedBackground={true}
|
||||
heading={[
|
||||
{ type: "text", content: "Nuestra Filosofía" },
|
||||
{ type: "image", src: "http://img.b2bpic.net/free-photo/male-chef-kitchen-holding-plate-salad_23-2149646219.jpg", alt: "Chef trabajando" },
|
||||
]}
|
||||
buttons={[{ text: "Conoce nuestra historia", href: "#" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="menu" data-section="menu">
|
||||
<ProductCardTwo
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "1",
|
||||
brand: "Entrante",
|
||||
name: "Carpaccio de Remolacha",
|
||||
price: "12€",
|
||||
rating: 5,
|
||||
reviewCount: "120",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-tasty-greece-salad-with-vegetables-white-cheese-sliced-inside-black-plate-dark-desk_140725-14507.jpg",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
brand: "Plato Principal",
|
||||
name: "Solomillo de Ternera",
|
||||
price: "28€",
|
||||
rating: 5,
|
||||
reviewCount: "85",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/plate-steak-red-wine-sauce-mashed-vegetables_114579-2333.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
brand: "Plato Principal",
|
||||
name: "Risotto de Setas",
|
||||
price: "18€",
|
||||
rating: 4,
|
||||
reviewCount: "62",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/caesar-salad-white-plate-looks-nice-tasty-brightlooking-tasty-white-table_132075-13042.jpg",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
brand: "Postre",
|
||||
name: "Tarta de Queso",
|
||||
price: "9€",
|
||||
rating: 5,
|
||||
reviewCount: "140",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/elegant-dessert-with-floral-decoration-marble-table_23-2151973731.jpg",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
brand: "Principal",
|
||||
name: "Salmón a la Parrilla",
|
||||
price: "22€",
|
||||
rating: 5,
|
||||
reviewCount: "98",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-girl-sitting-cafe_1157-20846.jpg",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
brand: "Principal",
|
||||
name: "Pasta Artesanal",
|
||||
price: "16€",
|
||||
rating: 4,
|
||||
reviewCount: "77",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-grilled-beef-medallion-with-sauce-vegetables-white-plate-table_140725-11508.jpg",
|
||||
},
|
||||
]}
|
||||
title="Nuestra Selección"
|
||||
description="Platos cuidadosamente preparados con los ingredientes más frescos de temporada."
|
||||
/>
|
||||
</div>
|
||||
<div id="menu" data-section="menu">
|
||||
<ProductCardTwo
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{ id: "1", brand: "Entrante", name: "Carpaccio de Remolacha", price: "12€", rating: 5, reviewCount: "120", imageSrc: "http://img.b2bpic.net/free-photo/front-view-tasty-greece-salad-with-vegetables-white-cheese-sliced-inside-black-plate-dark-desk_140725-14507.jpg" },
|
||||
{ id: "2", brand: "Plato Principal", name: "Solomillo de Ternera", price: "28€", rating: 5, reviewCount: "85", imageSrc: "http://img.b2bpic.net/free-photo/plate-steak-red-wine-sauce-mashed-vegetables_114579-2333.jpg" },
|
||||
{ id: "3", brand: "Plato Principal", name: "Risotto de Setas", price: "18€", rating: 4, reviewCount: "62", imageSrc: "http://img.b2bpic.net/free-photo/caesar-salad-white-plate-looks-nice-tasty-brightlooking-tasty-white-table_132075-13042.jpg" },
|
||||
{ id: "4", brand: "Postre", name: "Tarta de Queso", price: "9€", rating: 5, reviewCount: "140", imageSrc: "http://img.b2bpic.net/free-photo/elegant-dessert-with-floral-decoration-marble-table_23-2151973731.jpg" },
|
||||
{ id: "5", brand: "Principal", name: "Salmón a la Parrilla", price: "22€", rating: 5, reviewCount: "98", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-girl-sitting-cafe_1157-20846.jpg" },
|
||||
{ id: "6", brand: "Principal", name: "Pasta Artesanal", price: "16€", rating: 4, reviewCount: "77", imageSrc: "http://img.b2bpic.net/free-photo/side-view-grilled-beef-medallion-with-sauce-vegetables-white-plate-table_140725-11508.jpg" },
|
||||
]}
|
||||
title="Nuestra Selección"
|
||||
description="Platos cuidadosamente preparados con los ingredientes más frescos de temporada."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardTwo
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={true}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Ana García",
|
||||
role: "Crítica Gastronómica",
|
||||
testimonial: "Una experiencia sublime, desde el servicio hasta la calidad del producto.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/friends-eating-conversating-restaurant_23-2148006709.jpg",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Carlos Ruiz",
|
||||
role: "Comensal",
|
||||
testimonial: "El mejor solomillo que he probado en años. Totalmente recomendado.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-people-celebrating-engagement_23-2149212184.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Elena Torres",
|
||||
role: "Turista",
|
||||
testimonial: "Un rincón de paz con platos deliciosos. Volveré sin duda alguna.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-friends-sitting-table_23-2149293982.jpg",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Javier López",
|
||||
role: "Local",
|
||||
testimonial: "La atención al detalle en Romanova es simplemente excepcional.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-woman-with-long-blonde-hair-holding-delicious-chocolate-muffin-hand_23-2147974685.jpg",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Sofía Martínez",
|
||||
role: "Comensal",
|
||||
testimonial: "Ambiente increíble y cocina de autor. El postre es una maravilla.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/friends-eating-restaurant_23-2148006619.jpg",
|
||||
},
|
||||
]}
|
||||
title="Lo que dicen nuestros clientes"
|
||||
description="Experiencias gastronómicas inolvidables en Romanova."
|
||||
/>
|
||||
</div>
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardTwo
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={true}
|
||||
testimonials={[
|
||||
{ id: "1", name: "Ana García", role: "Crítica Gastronómica", testimonial: "Una experiencia sublime, desde el servicio hasta la calidad del producto.", imageSrc: "http://img.b2bpic.net/free-photo/friends-eating-conversating-restaurant_23-2148006709.jpg" },
|
||||
{ id: "2", name: "Carlos Ruiz", role: "Comensal", testimonial: "El mejor solomillo que he probado en años. Totalmente recomendado.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-people-celebrating-engagement_23-2149212184.jpg" },
|
||||
{ id: "3", name: "Elena Torres", role: "Turista", testimonial: "Un rincón de paz con platos deliciosos. Volveré sin duda alguna.", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-friends-sitting-table_23-2149293982.jpg" },
|
||||
{ id: "4", name: "Javier López", role: "Local", testimonial: "La atención al detalle en Romanova es simplemente excepcional.", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-woman-with-long-blonde-hair-holding-delicious-chocolate-muffin-hand_23-2147974685.jpg" },
|
||||
{ id: "5", name: "Sofía Martínez", role: "Comensal", testimonial: "Ambiente increíble y cocina de autor. El postre es una maravilla.", imageSrc: "http://img.b2bpic.net/free-photo/friends-eating-restaurant_23-2148006619.jpg" },
|
||||
]}
|
||||
title="Lo que dicen nuestros clientes"
|
||||
description="Experiencias gastronómicas inolvidables en Romanova."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactText
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "sparkles-gradient",
|
||||
}}
|
||||
text="Ven a visitarnos en Romanova. Haz tu reserva hoy mismo."
|
||||
buttons={[
|
||||
{
|
||||
text: "Reserva tu mesa",
|
||||
href: "tel:+34900000000",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactText
|
||||
useInvertedBackground={false}
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
text="Ven a visitarnos en Romanova. Haz tu reserva hoy mismo."
|
||||
buttons={[{ text: "Reserva tu mesa", href: "tel:+34900000000" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/luxury-restaurant-grill-bar-interior-with-chandeliers-furniture_114579-2341.jpg"
|
||||
logoText="Romanova"
|
||||
columns={[
|
||||
{
|
||||
title: "Navegación",
|
||||
items: [
|
||||
{
|
||||
label: "Inicio",
|
||||
href: "#hero",
|
||||
},
|
||||
{
|
||||
label: "Menú",
|
||||
href: "#menu",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
{
|
||||
label: "Política de Privacidad",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Términos",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
copyrightText="© 2025 | Restaurante Romanova"
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/luxury-restaurant-grill-bar-interior-with-chandeliers-furniture_114579-2341.jpg"
|
||||
logoText="Romanova"
|
||||
columns={[
|
||||
{ title: "Navegación", items: [{ label: "Inicio", href: "#hero" }, { label: "Menú", href: "#menu" }] },
|
||||
{ title: "Legal", items: [{ label: "Política de Privacidad", href: "#" }, { label: "Términos", href: "#" }] },
|
||||
]}
|
||||
copyrightText="© 2025 | Restaurante Romanova"
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user