diff --git a/src/app/reservas/page.tsx b/src/app/reservas/page.tsx index 7f7d523..ca862f5 100644 --- a/src/app/reservas/page.tsx +++ b/src/app/reservas/page.tsx @@ -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 ( @@ -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" /> @@ -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" }, ]} /> @@ -97,36 +66,8 @@ export default function LandingPage() {