Update src/app/experiencias/page.tsx
This commit is contained in:
@@ -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 (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-stagger"
|
||||
@@ -24,24 +24,13 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Inicio",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Experiencias",
|
||||
id: "/experiencias",
|
||||
},
|
||||
{
|
||||
name: "Nosotros",
|
||||
id: "/nosotros",
|
||||
},
|
||||
{
|
||||
name: "Reservas",
|
||||
id: "/reservas",
|
||||
},
|
||||
{ name: "Inicio", id: "/" },
|
||||
{ name: "Experiencias", id: "/experiencias" },
|
||||
{ name: "Nosotros", id: "/nosotros" },
|
||||
{ name: "Reservas", id: "/reservas" },
|
||||
]}
|
||||
brandName="Portal del Paraíso"
|
||||
button={{ text: "Reservar", href: "/reservas" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -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" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -109,36 +68,8 @@ export default function LandingPage() {
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{
|
||||
title: "Navegación",
|
||||
items: [
|
||||
{
|
||||
label: "Inicio",
|
||||
href: "/",
|
||||
},
|
||||
{
|
||||
label: "Experiencias",
|
||||
href: "/experiencias",
|
||||
},
|
||||
{
|
||||
label: "Nosotros",
|
||||
href: "/nosotros",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
{
|
||||
label: "Privacidad",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Términos",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ title: "Navegación", items: [{ label: "Inicio", href: "/" }, { label: "Experiencias", href: "/experiencias" }, { label: "Nosotros", href: "/nosotros" }] },
|
||||
{ title: "Legal", items: [{ label: "Privacidad", href: "#" }, { label: "Términos", href: "#" }] },
|
||||
]}
|
||||
bottomLeftText="© 2024 Portal del Paraíso"
|
||||
bottomRightText="Desconectá. Reconectá."
|
||||
|
||||
Reference in New Issue
Block a user