Update src/app/reservas/page.tsx

This commit is contained in:
2026-04-11 18:09:59 +00:00
parent 062cc7f411
commit 3007f0f487

View File

@@ -7,7 +7,7 @@ import FooterSimple from '@/components/sections/footer/FooterSimple';
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
export default function LandingPage() {
export default function ReservasPage() {
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
@@ -25,24 +25,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,21 +41,10 @@ export default function LandingPage() {
title="Consultar Disponibilidad"
description="Reservá tu lugar en el Paraíso."
inputs={[
{
name: "checkin",
type: "date",
placeholder: "Entrada",
},
{
name: "checkout",
type: "date",
placeholder: "Salida",
},
{ name: "checkin", type: "date", placeholder: "Entrada" },
{ name: "checkout", type: "date", placeholder: "Salida" },
]}
textarea={{
name: "notes",
placeholder: "Cualquier otra consulta",
}}
textarea={{ name: "notes", placeholder: "Cualquier otra consulta" }}
imageSrc="http://img.b2bpic.net/free-photo/medium-shot-young-woman-surrounded-by-plants_23-2150522492.jpg"
/>
</div>
@@ -78,18 +56,9 @@ export default function LandingPage() {
description="Todo lo necesario para una desconexión real."
imageSrc="http://img.b2bpic.net/free-photo/cute-little-hut-with-stone-pathway-top-hill_181624-16606.jpg"
metrics={[
{
value: "Eco-Cabina",
title: "Privada",
},
{
value: "Desayuno",
title: "Orgánico",
},
{
value: "Wi-Fi",
title: "Solo en recepción",
},
{ value: "Eco-Cabina", title: "Privada" },
{ value: "Desayuno", title: "Orgánico" },
{ value: "Wi-Fi", title: "Solo en recepción" },
]}
/>
</div>
@@ -97,36 +66,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á."