Merge version_1 into main #1
273
src/app/page.tsx
273
src/app/page.tsx
@@ -11,7 +11,7 @@ import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi';
|
||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||
import ProductCardThree from '@/components/sections/product/ProductCardThree';
|
||||
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
|
||||
import { Leaf, Sparkles, Sun } from "lucide-react";
|
||||
import { Leaf, Sparkles, Sun, ArrowRight } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -31,26 +31,11 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{
|
||||
name: "Inicio",
|
||||
id: "#hero",
|
||||
},
|
||||
{
|
||||
name: "Nosotros",
|
||||
id: "#about",
|
||||
},
|
||||
{
|
||||
name: "Habitaciones",
|
||||
id: "#rooms",
|
||||
},
|
||||
{
|
||||
name: "Experiencias",
|
||||
id: "#experiences",
|
||||
},
|
||||
{
|
||||
name: "Contacto",
|
||||
id: "#contact",
|
||||
},
|
||||
{ name: "Inicio", id: "#hero" },
|
||||
{ name: "Nosotros", id: "#about" },
|
||||
{ name: "Habitaciones", id: "#rooms" },
|
||||
{ name: "Experiencias", id: "#experiences" },
|
||||
{ name: "Contacto", id: "#contact" },
|
||||
]}
|
||||
brandName="Sagrada Tierra"
|
||||
/>
|
||||
@@ -58,83 +43,36 @@ export default function LandingPage() {
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitKpi
|
||||
background={{
|
||||
variant: "radial-gradient",
|
||||
}}
|
||||
background={{ variant: "radial-gradient" }}
|
||||
title="Bajo el cielo andino, un refugio con alma"
|
||||
description="Sagrada Tierra es un santuario de lujo consciente en el corazón de Ollantaytambo. Donde la herencia inca, la serenidad y el confort moderno se encuentran."
|
||||
kpis={[
|
||||
{
|
||||
value: "10",
|
||||
label: "Suites Boutique",
|
||||
},
|
||||
{
|
||||
value: "2400m",
|
||||
label: "Altura Sagrada",
|
||||
},
|
||||
{
|
||||
value: "100%",
|
||||
label: "Desconexión",
|
||||
},
|
||||
{ value: "10", label: "Suites Boutique" },
|
||||
{ value: "2400m", label: "Altura Sagrada" },
|
||||
{ value: "100%", label: "Desconexión" },
|
||||
]}
|
||||
enableKpiAnimation={true}
|
||||
buttons={[
|
||||
{
|
||||
text: "Reservar estancia",
|
||||
href: "#contact",
|
||||
},
|
||||
{
|
||||
text: "Descubrir Valle",
|
||||
href: "#experiences",
|
||||
},
|
||||
{ text: "Reservar estancia", href: "#contact" },
|
||||
{ text: "Descubrir Valle", href: "#experiences" },
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/beautiful-shot-green-trees-with-house-mountain-distance-dolomite-italy_181624-18678.jpg"
|
||||
imageAlt="Vista del Macizo de Ollantaytambo"
|
||||
mediaAnimation="blur-reveal"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/amazing-panoramic-shot-komiza-town-facing-adriatic-sea-from-island-vis-croatia_181624-44231.jpg",
|
||||
alt: "Guest 1",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/summer-night-view-albarracin-with-church_1398-2340.jpg",
|
||||
alt: "Guest 2",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/morning-mountains-carpathian-ukraine-europe-beauty-world_1153-5730.jpg",
|
||||
alt: "Guest 3",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/viewpoint-toaca-peak-carpathians-romania-nature-sunset_1268-19791.jpg",
|
||||
alt: "Guest 4",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/beautiful-high-angle-shot-bryce-canyon-national-park-utah-winter_181624-7075.jpg",
|
||||
alt: "Guest 5",
|
||||
},
|
||||
{ src: "http://img.b2bpic.net/free-photo/amazing-panoramic-shot-komiza-town-facing-adriatic-sea-from-island-vis-croatia_181624-44231.jpg", alt: "Guest 1" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/summer-night-view-albarracin-with-church_1398-2340.jpg", alt: "Guest 2" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/morning-mountains-carpathian-ukraine-europe-beauty-world_1153-5730.jpg", alt: "Guest 3" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/viewpoint-toaca-peak-carpathians-romania-nature-sunset_1268-19791.jpg", alt: "Guest 4" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/beautiful-high-angle-shot-bryce-canyon-national-park-utah-winter_181624-7075.jpg", alt: "Guest 5" },
|
||||
]}
|
||||
avatarText="Únete a 500+ viajeros"
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text",
|
||||
text: "Ollantaytambo",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Valle Sagrado",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Lujo Consciente",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Experiencia Inca",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Bienestar Puro",
|
||||
},
|
||||
{ type: "text", text: "Ollantaytambo" },
|
||||
{ type: "text", text: "Valle Sagrado" },
|
||||
{ type: "text", text: "Lujo Consciente" },
|
||||
{ type: "text", text: "Experiencia Inca" },
|
||||
{ type: "text", text: "Bienestar Puro" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -144,21 +82,9 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
title="Un santuario sereno"
|
||||
metrics={[
|
||||
{
|
||||
icon: Sparkles,
|
||||
label: "Lujo Consciente",
|
||||
value: "Authentic",
|
||||
},
|
||||
{
|
||||
icon: Leaf,
|
||||
label: "Sostenibilidad",
|
||||
value: "Local",
|
||||
},
|
||||
{
|
||||
icon: Sun,
|
||||
label: "Bienestar",
|
||||
value: "Integral",
|
||||
},
|
||||
{ icon: Sparkles, label: "Lujo Consciente", value: "Authentic" },
|
||||
{ icon: Leaf, label: "Sostenibilidad", value: "Local" },
|
||||
{ icon: Sun, label: "Bienestar", value: "Integral" },
|
||||
]}
|
||||
metricsAnimation="slide-up"
|
||||
/>
|
||||
@@ -169,30 +95,10 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "Suites Premium",
|
||||
description: "Con terraza privada y vistas al Macizo.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-pregnant-woman-laying-bed_23-2149072928.jpg",
|
||||
buttonIcon: "ArrowRight",
|
||||
},
|
||||
{
|
||||
title: "Caminatas Incas",
|
||||
description: "Acceso directo a rutas ancestrales.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-male-hiker-venturing-through-narrow-gravel-road-towards-rocky-mountains_181624-10829.jpg",
|
||||
buttonIcon: "ArrowRight",
|
||||
},
|
||||
{
|
||||
title: "Spa Andino",
|
||||
description: "Jacuzzi exterior bajo las estrellas.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/black-silhouette-asian-woman-splash-water-summer-vacation-holiday-relaxing-infinity-swimming-pool-with-blue-sea-sunset-view-with-high-rise-skyscape-urban-downtown-healthy-happiness-lifestyle_609648-1004.jpg",
|
||||
buttonIcon: "ArrowRight",
|
||||
},
|
||||
{
|
||||
title: "Gastronomía Local",
|
||||
description: "Productos artesanales y orgánicos.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/there-are-glasses-wine-water-table-with-white-cloth-are-ready-dining_613910-3428.jpg",
|
||||
buttonIcon: "ArrowRight",
|
||||
},
|
||||
{ title: "Suites Premium", description: "Con terraza privada y vistas al Macizo.", imageSrc: "http://img.b2bpic.net/free-photo/full-shot-pregnant-woman-laying-bed_23-2149072928.jpg", buttonIcon: ArrowRight },
|
||||
{ title: "Caminatas Incas", description: "Acceso directo a rutas ancestrales.", imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-male-hiker-venturing-through-narrow-gravel-road-towards-rocky-mountains_181624-10829.jpg", buttonIcon: ArrowRight },
|
||||
{ title: "Spa Andino", description: "Jacuzzi exterior bajo las estrellas.", imageSrc: "http://img.b2bpic.net/free-photo/black-silhouette-asian-woman-splash-water-summer-vacation-holiday-relaxing-infinity-swimming-pool-with-blue-sea-sunset-view-with-high-rise-skyscape-urban-downtown-healthy-happiness-lifestyle_609648-1004.jpg", buttonIcon: ArrowRight },
|
||||
{ title: "Gastronomía Local", description: "Productos artesanales y orgánicos.", imageSrc: "http://img.b2bpic.net/free-photo/there-are-glasses-wine-water-table-with-white-cloth-are-ready-dining_613910-3428.jpg", buttonIcon: ArrowRight },
|
||||
]}
|
||||
title="Descanso con vista al sagrado"
|
||||
description="Diseñadas para fusionar calidez andina y confort contemporáneo."
|
||||
@@ -206,42 +112,12 @@ export default function LandingPage() {
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
name: "Ruta Pinkuylluna",
|
||||
price: "Incluido",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/tunnel-through-rock-wall-nature-park-rakov-skocjan-slovenia_181624-26346.jpg",
|
||||
},
|
||||
{
|
||||
id: "p2",
|
||||
name: "Bienestar Andino",
|
||||
price: "Desde $50",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/spa-massage-concept-with-woman_23-2147817023.jpg",
|
||||
},
|
||||
{
|
||||
id: "p3",
|
||||
name: "Talleres Textilería",
|
||||
price: "Desde $40",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/terrace-restaurand-modern-style-summer_114579-2726.jpg",
|
||||
},
|
||||
{
|
||||
id: "p4",
|
||||
name: "Tour Fotografía",
|
||||
price: "Desde $60",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/rock-state-park-hiking-terrebonne-usa_181624-13497.jpg",
|
||||
},
|
||||
{
|
||||
id: "p5",
|
||||
name: "Degustación de Muña",
|
||||
price: "Incluido",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/sweet-pastry-coffee_1162-171.jpg",
|
||||
},
|
||||
{
|
||||
id: "p6",
|
||||
name: "Asesoría Machu Picchu",
|
||||
price: "Gratis",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/female-with-headphones-doing-fitness-home_23-2148928947.jpg",
|
||||
},
|
||||
{ id: "p1", name: "Ruta Pinkuylluna", price: "Incluido", imageSrc: "http://img.b2bpic.net/free-photo/tunnel-through-rock-wall-nature-park-rakov-skocjan-slovenia_181624-26346.jpg" },
|
||||
{ id: "p2", name: "Bienestar Andino", price: "Desde $50", imageSrc: "http://img.b2bpic.net/free-photo/spa-massage-concept-with-woman_23-2147817023.jpg" },
|
||||
{ id: "p3", name: "Talleres Textilería", price: "Desde $40", imageSrc: "http://img.b2bpic.net/free-photo/terrace-restaurand-modern-style-summer_114579-2726.jpg" },
|
||||
{ id: "p4", name: "Tour Fotografía", price: "Desde $60", imageSrc: "http://img.b2bpic.net/free-photo/rock-state-park-hiking-terrebonne-usa_181624-13497.jpg" },
|
||||
{ id: "p5", name: "Degustación de Muña", price: "Incluido", imageSrc: "http://img.b2bpic.net/free-photo/sweet-pastry-coffee_1162-171.jpg" },
|
||||
{ id: "p6", name: "Asesoría Machu Picchu", price: "Gratis", imageSrc: "http://img.b2bpic.net/free-photo/female-with-headphones-doing-fitness-home_23-2148928947.jpg" },
|
||||
]}
|
||||
title="Experiencias Únicas"
|
||||
description="Explora el Valle Sagrado a tu ritmo."
|
||||
@@ -254,41 +130,11 @@ export default function LandingPage() {
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "t1",
|
||||
name: "Sarah J.",
|
||||
handle: "@viajera",
|
||||
testimonial: "El jacuzzi exterior bajo las estrellas fue mágico.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-bathrobe-reading-magazine-while-relaxing-beauty-spa-looking-camera_637285-7434.jpg",
|
||||
},
|
||||
{
|
||||
id: "t2",
|
||||
name: "Michael C.",
|
||||
handle: "@hiking",
|
||||
testimonial: "La ubicación perfecta para Pinkuylluna.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-beautiful-woman-sitting-bed-hotel-stylish-evening-dress-sensual-mood-talking-phone-smiling-flirty-looking-sexy_285396-6173.jpg",
|
||||
},
|
||||
{
|
||||
id: "t3",
|
||||
name: "Emily R.",
|
||||
handle: "@luxury",
|
||||
testimonial: "Atención personalizada de primer nivel.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/outdoor-portrait-fashionable-young-bearded-man-wearing-black-snapback-backwards-standing-against-exotic-green-nature-with-waterfall-caucasian-tourist-spending-vacations-rainforest_273609-1605.jpg",
|
||||
},
|
||||
{
|
||||
id: "t4",
|
||||
name: "David K.",
|
||||
handle: "@perutrip",
|
||||
testimonial: "Desayuno excepcional con productos locales.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-traveller-smiling-camera_23-2148258762.jpg",
|
||||
},
|
||||
{
|
||||
id: "t5",
|
||||
name: "Anna V.",
|
||||
handle: "@wellness",
|
||||
testimonial: "Un oasis de paz y silencio intencional.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-people-relaxing-pool_23-2151178233.jpg",
|
||||
},
|
||||
{ id: "t1", name: "Sarah J.", handle: "@viajera", testimonial: "El jacuzzi exterior bajo las estrellas fue mágico.", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-bathrobe-reading-magazine-while-relaxing-beauty-spa-looking-camera_637285-7434.jpg" },
|
||||
{ id: "t2", name: "Michael C.", handle: "@hiking", testimonial: "La ubicación perfecta para Pinkuylluna.", imageSrc: "http://img.b2bpic.net/free-photo/young-beautiful-woman-sitting-bed-hotel-stylish-evening-dress-sensual-mood-talking-phone-smiling-flirty-looking-sexy_285396-6173.jpg" },
|
||||
{ id: "t3", name: "Emily R.", handle: "@luxury", testimonial: "Atención personalizada de primer nivel.", imageSrc: "http://img.b2bpic.net/free-photo/outdoor-portrait-fashionable-young-bearded-man-wearing-black-snapback-backwards-standing-against-exotic-green-nature-with-waterfall-caucasian-tourist-spending-vacations-rainforest_273609-1605.jpg" },
|
||||
{ id: "t4", name: "David K.", handle: "@perutrip", testimonial: "Desayuno excepcional con productos locales.", imageSrc: "http://img.b2bpic.net/free-photo/happy-traveller-smiling-camera_23-2148258762.jpg" },
|
||||
{ id: "t5", name: "Anna V.", handle: "@wellness", testimonial: "Un oasis de paz y silencio intencional.", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-people-relaxing-pool_23-2151178233.jpg" },
|
||||
]}
|
||||
title="Voces del Valle"
|
||||
description="Lo que dicen nuestros viajeros."
|
||||
@@ -300,21 +146,9 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "q1",
|
||||
title: "¿Se permiten mascotas?",
|
||||
content: "Sí, permitimos mascotas. Consulta nuestras condiciones de alojamiento.",
|
||||
},
|
||||
{
|
||||
id: "q2",
|
||||
title: "¿El desayuno está incluido?",
|
||||
content: "Sí, servimos desayuno bufé de 7:30 a 10:00 con opciones locales.",
|
||||
},
|
||||
{
|
||||
id: "q3",
|
||||
title: "¿Cómo llego desde Cusco?",
|
||||
content: "Ofrecemos shuttle privado coordinado con suplemento adicional.",
|
||||
},
|
||||
{ id: "q1", title: "¿Se permiten mascotas?", content: "Sí, permitimos mascotas. Consulta nuestras condiciones de alojamiento." },
|
||||
{ id: "q2", title: "¿El desayuno está incluido?", content: "Sí, servimos desayuno bufé de 7:30 a 10:00 con opciones locales." },
|
||||
{ id: "q3", title: "¿Cómo llego desde Cusco?", content: "Ofrecemos shuttle privado coordinado con suplemento adicional." },
|
||||
]}
|
||||
title="Preguntas Frecuentes"
|
||||
description="Todo lo que necesitas saber antes de venir."
|
||||
@@ -325,32 +159,19 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCTA
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
background={{ variant: "plain" }}
|
||||
tag="Reservas"
|
||||
title="Tu refugio te espera"
|
||||
description="Contáctanos hoy para asegurar tu estancia en Sagrada Tierra."
|
||||
buttons={[
|
||||
{
|
||||
text: "Enviar mensaje",
|
||||
href: "#",
|
||||
},
|
||||
]}
|
||||
buttons={[{ text: "Enviar mensaje", href: "#" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoReveal
|
||||
logoText="Sagrada Tierra"
|
||||
leftLink={{
|
||||
text: "Políticas",
|
||||
href: "#",
|
||||
}}
|
||||
rightLink={{
|
||||
text: "Instagram",
|
||||
href: "https://instagram.com",
|
||||
}}
|
||||
leftLink={{ text: "Políticas", href: "#" }}
|
||||
rightLink={{ text: "Instagram", href: "https://instagram.com" }}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
|
||||
Reference in New Issue
Block a user