Merge version_1 into main
Merge version_1 into main
This commit was merged in pull request #3.
This commit is contained in:
100
src/app/page.tsx
100
src/app/page.tsx
@@ -30,14 +30,10 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{
|
||||
name: "Home", id: "hero"},
|
||||
{
|
||||
name: "Menú", id: "menu"},
|
||||
{
|
||||
name: "Testimonios", id: "testimonials"},
|
||||
{
|
||||
name: "Contacto", id: "contact"},
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "Menú", id: "menu" },
|
||||
{ name: "Testimonios", id: "testimonials" },
|
||||
{ name: "Contacto", id: "contact" },
|
||||
]}
|
||||
brandName="Vianda"
|
||||
/>
|
||||
@@ -45,14 +41,10 @@ export default function LandingPage() {
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardScroll
|
||||
background={{
|
||||
variant: "gradient-bars"}}
|
||||
background={{ variant: "gradient-bars" }}
|
||||
title="Vianda - Experiencia Gastronómica"
|
||||
description="Descubre una propuesta culinaria auténtica, donde la frescura y la pasión se encuentran en cada plato."
|
||||
buttons={[
|
||||
{
|
||||
text: "Ver Menú", href: "#menu"},
|
||||
]}
|
||||
buttons={[{ text: "Ver Menú", href: "#menu" }]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/high-angle-shot-fusion-food-with-sushi-seasonings-plate-wooden-surface_181624-42994.jpg"
|
||||
/>
|
||||
</div>
|
||||
@@ -63,10 +55,8 @@ export default function LandingPage() {
|
||||
title="Nuestra Filosofía"
|
||||
description="En Vianda, nos dedicamos a ofrecer ingredientes de alta calidad, transformándolos en platos que cuentan una historia de sabor y tradición local."
|
||||
metrics={[
|
||||
{
|
||||
value: "100%", title: "Ingredientes Frescos"},
|
||||
{
|
||||
value: "10+", title: "Años de Tradición"},
|
||||
{ value: "100%", title: "Ingredientes Frescos" },
|
||||
{ value: "10+", title: "Años de Tradición" },
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/young-cook-holding-burning-pan-hand_23-2148040254.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
@@ -81,18 +71,12 @@ export default function LandingPage() {
|
||||
gridVariant="one-large-left-three-stacked-right"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "1", name: "Entrante Especial", price: "12€", variant: "Entrante", imageSrc: "http://img.b2bpic.net/free-photo/baked-salmon-garnished-with-asparagus-tomatoes-with-herbs_2829-14481.jpg"},
|
||||
{
|
||||
id: "2", name: "Plato Principal Vianda", price: "22€", variant: "Principal", imageSrc: "http://img.b2bpic.net/free-photo/front-view-little-delicious-cake-with-chocolate-raisins-light-dark-background_140725-132619.jpg"},
|
||||
{
|
||||
id: "3", name: "Ensalada Estacional", price: "14€", variant: "Vegano", imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-food-arrangement_23-2148510958.jpg"},
|
||||
{
|
||||
id: "4", name: "Mariscos del Día", price: "28€", variant: "Mariscos", imageSrc: "http://img.b2bpic.net/free-photo/front-view-fresh-fish-slices-with-tomatoes-lemon-slices-dark-meat-color-seafood-dish-photo-food-raw_140725-144022.jpg"},
|
||||
{
|
||||
id: "5", name: "Postre de la Casa", price: "8€", variant: "Postre", imageSrc: "http://img.b2bpic.net/free-photo/top-view-dishes-plate-with-copy-space_23-2148491351.jpg"},
|
||||
{
|
||||
id: "6", name: "Degustación de Quesos", price: "15€", variant: "Quesos", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-green-garlic-black-plate_23-2148425577.jpg"},
|
||||
{ id: "1", name: "Entrante Especial", price: "12€", variant: "Entrante", imageSrc: "http://img.b2bpic.net/free-photo/baked-salmon-garnished-with-asparagus-tomatoes-with-herbs_2829-14481.jpg" },
|
||||
{ id: "2", name: "Plato Principal Vianda", price: "22€", variant: "Principal", imageSrc: "http://img.b2bpic.net/free-photo/front-view-little-delicious-cake-with-chocolate-raisins-light-dark-background_140725-132619.jpg" },
|
||||
{ id: "3", name: "Ensalada Estacional", price: "14€", variant: "Vegano", imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-food-arrangement_23-2148510958.jpg" },
|
||||
{ id: "4", name: "Mariscos del Día", price: "28€", variant: "Mariscos", imageSrc: "http://img.b2bpic.net/free-photo/front-view-fresh-fish-slices-with-tomatoes-lemon-slices-dark-meat-color-seafood-dish-photo-food-raw_140725-144022.jpg" },
|
||||
{ id: "5", name: "Postre de la Casa", price: "8€", variant: "Postre", imageSrc: "http://img.b2bpic.net/free-photo/top-view-dishes-plate-with-copy-space_23-2148491351.jpg" },
|
||||
{ id: "6", name: "Degustación de Quesos", price: "15€", variant: "Quesos", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-green-garlic-black-plate_23-2148425577.jpg" },
|
||||
]}
|
||||
title="Nuestra Carta"
|
||||
description="Explora nuestra selección de platos elaborados con dedicación para cada comensal."
|
||||
@@ -106,12 +90,9 @@ export default function LandingPage() {
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "Ingredientes de Proximidad", description: "Trabajamos con agricultores locales.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-mature-man-preparing-dinner-family_23-2149117505.jpg", titleImageSrc: "http://img.b2bpic.net/free-photo/cutlery-leaves_23-2147709608.jpg", buttonText: "Saber más"},
|
||||
{
|
||||
title: "Ambiente Acogedor", description: "Un espacio diseñado para disfrutar.", imageSrc: "http://img.b2bpic.net/free-photo/side-view-table-served-with-tea-nuts-dried-fruits-plate_140725-12865.jpg", titleImageSrc: "http://img.b2bpic.net/free-photo/lunch-setup-restaurant-near-window-floor-stand-lamp_140725-1572.jpg", buttonText: "Saber más"},
|
||||
{
|
||||
title: "Atención Personalizada", description: "Servicio dedicado a cada mesa.", imageSrc: "http://img.b2bpic.net/free-photo/people-having-dinner-luxurious-restaurants_23-2151081849.jpg", titleImageSrc: "http://img.b2bpic.net/free-photo/medium-shot-couple-having-lunch-luxury-restaurant_23-2150598347.jpg", buttonText: "Saber más"},
|
||||
{ title: "Ingredientes de Proximidad", description: "Trabajamos con agricultores locales.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-mature-man-preparing-dinner-family_23-2149117505.jpg", titleImageSrc: "http://img.b2bpic.net/free-photo/cutlery-leaves_23-2147709608.jpg", buttonText: "Saber más" },
|
||||
{ title: "Ambiente Acogedor", description: "Un espacio diseñado para disfrutar.", imageSrc: "http://img.b2bpic.net/free-photo/side-view-table-served-with-tea-nuts-dried-fruits-plate_140725-12865.jpg", titleImageSrc: "http://img.b2bpic.net/free-photo/lunch-setup-restaurant-near-window-floor-stand-lamp_140725-1572.jpg", buttonText: "Saber más" },
|
||||
{ title: "Atención Personalizada", description: "Servicio dedicado a cada mesa.", imageSrc: "http://img.b2bpic.net/free-photo/people-having-dinner-luxurious-restaurants_23-2151081849.jpg", titleImageSrc: "http://img.b2bpic.net/free-photo/medium-shot-couple-having-lunch-luxury-restaurant_23-2150598347.jpg", buttonText: "Saber más" },
|
||||
]}
|
||||
title="Por qué elegir Vianda"
|
||||
description="Calidad, confort y servicio excelente en un mismo lugar."
|
||||
@@ -124,16 +105,11 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", name: "Lucía P.", handle: "@lucia_p", testimonial: "La comida es excelente, el ambiente muy tranquilo y acogedor.", imageSrc: "http://img.b2bpic.net/free-photo/having-lunch-spacious-restaurant_52683-117480.jpg"},
|
||||
{
|
||||
id: "2", name: "Carlos M.", handle: "@carlos_m", testimonial: "Un lugar fantástico para cenar en familia. El servicio es de 10.", imageSrc: "http://img.b2bpic.net/free-photo/group-young-people-having-wine-together_23-2148454082.jpg"},
|
||||
{
|
||||
id: "3", name: "Elena R.", handle: "@elena_r", testimonial: "Increíble sabor en cada plato. Repetiré sin duda alguna.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-young-friends-restaurant_23-2148395397.jpg"},
|
||||
{
|
||||
id: "4", name: "Javier S.", handle: "@javier_s", testimonial: "La relación calidad-precio es insuperable. Muy recomendado.", imageSrc: "http://img.b2bpic.net/free-photo/cheerful-friends-sitting-cafe-talking-with-each-other_171337-19750.jpg"},
|
||||
{
|
||||
id: "5", name: "Sofía T.", handle: "@sofia_t", testimonial: "De mis lugares favoritos. La atención fue impecable.", imageSrc: "http://img.b2bpic.net/free-photo/friends-eating-pizza-home-together_23-2150419416.jpg"},
|
||||
{ id: "1", name: "Lucía P.", handle: "@lucia_p", testimonial: "La comida es excelente, el ambiente muy tranquilo y acogedor.", imageSrc: "http://img.b2bpic.net/free-photo/having-lunch-spacious-restaurant_52683-117480.jpg" },
|
||||
{ id: "2", name: "Carlos M.", handle: "@carlos_m", testimonial: "Un lugar fantástico para cenar en familia. El servicio es de 10.", imageSrc: "http://img.b2bpic.net/free-photo/group-young-people-having-wine-together_23-2148454082.jpg" },
|
||||
{ id: "3", name: "Elena R.", handle: "@elena_r", testimonial: "Increíble sabor en cada plato. Repetiré sin duda alguna.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-young-friends-restaurant_23-2148395397.jpg" },
|
||||
{ id: "4", name: "Javier S.", handle: "@javier_s", testimonial: "La relación calidad-precio es insuperable. Muy recomendado.", imageSrc: "http://img.b2bpic.net/free-photo/cheerful-friends-sitting-cafe-talking-with-each-other_171337-19750.jpg" },
|
||||
{ id: "5", name: "Sofía T.", handle: "@sofia_t", testimonial: "De mis lugares favoritos. La atención fue impecable.", imageSrc: "http://img.b2bpic.net/free-photo/friends-eating-pizza-home-together_23-2150419416.jpg" },
|
||||
]}
|
||||
title="Lo que dicen nuestros clientes"
|
||||
description="La satisfacción de nuestros comensales es nuestra mejor recompensa."
|
||||
@@ -142,16 +118,13 @@ export default function LandingPage() {
|
||||
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqBase
|
||||
animationType="slide-up"
|
||||
animationType="smooth"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "1", title: "¿Es necesario reservar?", content: "Recomendamos reservar con antelación, especialmente los fines de semana."},
|
||||
{
|
||||
id: "2", title: "¿Tienen opciones vegetarianas?", content: "Sí, disponemos de una sección dedicada en nuestra carta para opciones vegetarianas."},
|
||||
{
|
||||
id: "3", title: "¿El local es accesible?", content: "Contamos con instalaciones adaptadas para garantizar el acceso a todos nuestros clientes."},
|
||||
{ id: "1", title: "¿Es necesario reservar?", content: "Recomendamos reservar con antelación, especialmente los fines de semana." },
|
||||
{ id: "2", title: "¿Tienen opciones vegetarianas?", content: "Sí, disponemos de una sección dedicada en nuestra carta para opciones vegetarianas." },
|
||||
{ id: "3", title: "¿El local es accesible?", content: "Contamos con instalaciones adaptadas para garantizar el acceso a todos nuestros clientes." },
|
||||
]}
|
||||
title="Preguntas Frecuentes"
|
||||
description="Información útil para planificar tu visita."
|
||||
@@ -162,8 +135,7 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactText
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "gradient-bars"}}
|
||||
background={{ variant: "gradient-bars" }}
|
||||
text="Ven a visitarnos en Vianda. ¡Estamos deseando recibirte!"
|
||||
/>
|
||||
</div>
|
||||
@@ -171,22 +143,8 @@ export default function LandingPage() {
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBase
|
||||
columns={[
|
||||
{
|
||||
title: "Menú", items: [
|
||||
{
|
||||
label: "Platos Principales", href: "#menu"},
|
||||
{
|
||||
label: "Entrantes", href: "#menu"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contacto", items: [
|
||||
{
|
||||
label: "Reservar", href: "#contact"},
|
||||
{
|
||||
label: "Localización", href: "#contact"},
|
||||
],
|
||||
},
|
||||
{ title: "Menú", items: [{ label: "Platos Principales", href: "#menu" }, { label: "Entrantes", href: "#menu" }] },
|
||||
{ title: "Contacto", items: [{ label: "Reservar", href: "#contact" }, { label: "Localización", href: "#contact" }] },
|
||||
]}
|
||||
logoText="Vianda"
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user