diff --git a/src/app/experiencias/page.tsx b/src/app/experiencias/page.tsx index 6df81d0..3dced83 100644 --- a/src/app/experiencias/page.tsx +++ b/src/app/experiencias/page.tsx @@ -6,7 +6,7 @@ import FeatureCardTwentyNine from '@/components/sections/feature/featureCardTwen import FooterSimple from '@/components/sections/footer/FooterSimple'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; -export default function LandingPage() { +export default function ExperienciasPage() { return ( @@ -52,27 +41,9 @@ export default function LandingPage() { gridVariant="one-large-left-three-stacked-right" useInvertedBackground={false} features={[ - { - title: "Recorridos a caballo", - description: "Explorá el bosque como se hacía antes.", - imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-deer-walking-away-muddy-pathway-surrounded-by-trees_181624-9844.jpg", - titleIconSrc: "Horse", - buttonText: "Ver más", - }, - { - title: "Trekking a cascadas", - description: "Caminatas que terminan en lugares que parecen irreales.", - imageSrc: "http://img.b2bpic.net/free-photo/woman-with-backpack-enjoying-nature_23-2148648051.jpg", - titleIconSrc: "Trees", - buttonText: "Ver más", - }, - { - title: "Desconexión total", - description: "Sin ruido. Sin apuro. Sin distracciones.", - imageSrc: "http://img.b2bpic.net/free-photo/young-boy-taking-pictures-near-lake_23-2148314310.jpg", - titleIconSrc: "Flame", - buttonText: "Ver más", - }, + { title: "Recorridos a caballo", description: "Explorá el bosque como se hacía antes.", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-deer-walking-away-muddy-pathway-surrounded-by-trees_181624-9844.jpg", titleIconSrc: "Horse", buttonText: "Ver más" }, + { title: "Trekking a cascadas", description: "Caminatas que terminan en lugares que parecen irreales.", imageSrc: "http://img.b2bpic.net/free-photo/woman-with-backpack-enjoying-nature_23-2148648051.jpg", titleIconSrc: "Trees", buttonText: "Ver más" }, + { title: "Desconexión total", description: "Sin ruido. Sin apuro. Sin distracciones.", imageSrc: "http://img.b2bpic.net/free-photo/young-boy-taking-pictures-near-lake_23-2148314310.jpg", titleIconSrc: "Flame", buttonText: "Ver más" }, ]} title="Nuestras Experiencias" description="No es un tour. Es una forma distinta de vivir la naturaleza." @@ -88,20 +59,8 @@ export default function LandingPage() { title="Descubrí el bosque" description="Actividades guiadas por expertos en la flora y fauna local." features={[ - { - title: "Safari fotográfico", - description: "Capturá la fauna salvaje en su hábitat natural.", - imageSrc: "http://img.b2bpic.net/free-photo/rural-landscape-with-beautiful-greenery-santa-catarina-brazil_181624-55844.jpg", - titleIconSrc: "Camera", - buttonText: "Reservar", - }, - { - title: "Caminatas nocturnas", - description: "Observá las estrellas desde el corazón del bosque.", - imageSrc: "http://img.b2bpic.net/free-photo/long-shot-greek-hound-mountain-dirt-path-athens-greece_181624-9356.jpg", - titleIconSrc: "Moon", - buttonText: "Reservar", - }, + { title: "Safari fotográfico", description: "Capturá la fauna salvaje en su hábitat natural.", imageSrc: "http://img.b2bpic.net/free-photo/rural-landscape-with-beautiful-greenery-santa-catarina-brazil_181624-55844.jpg", titleIconSrc: "Camera", buttonText: "Reservar" }, + { title: "Caminatas nocturnas", description: "Observá las estrellas desde el corazón del bosque.", imageSrc: "http://img.b2bpic.net/free-photo/long-shot-greek-hound-mountain-dirt-path-athens-greece_181624-9356.jpg", titleIconSrc: "Moon", buttonText: "Reservar" }, ]} /> @@ -109,36 +68,8 @@ export default function LandingPage() {