From 2a80269b64417a43cc7ded8dc0c100e813c46ea0 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 18 Apr 2026 12:49:08 +0000 Subject: [PATCH 1/2] Update src/app/dashboard/page.tsx --- src/app/dashboard/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/dashboard/page.tsx b/src/app/dashboard/page.tsx index 628cfa1..efc23d9 100644 --- a/src/app/dashboard/page.tsx +++ b/src/app/dashboard/page.tsx @@ -7,9 +7,9 @@ import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; export default function SellerDashboardPage() { return ( - + - +

Dashboard de Vendedor

-- 2.49.1 From a60d7821278761a9e260146564e5dc58c010c511 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 18 Apr 2026 12:49:08 +0000 Subject: [PATCH 2/2] Update src/app/property/[id]/page.tsx --- src/app/property/[id]/page.tsx | 29 +++++------------------------ 1 file changed, 5 insertions(+), 24 deletions(-) diff --git a/src/app/property/[id]/page.tsx b/src/app/property/[id]/page.tsx index 1fb0d3d..4b774ba 100644 --- a/src/app/property/[id]/page.tsx +++ b/src/app/property/[id]/page.tsx @@ -4,34 +4,15 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; -import { Building2, Mail, Phone, MapPin, CheckCircle } from "lucide-react"; -export default function PropertyDetailPage() { +export default function PropertyDetailPage({ params }: { params: { id: string } }) { return ( - + - +
-

Villa Contemporánea de Lujo

-
-
- Property -
-
-

$850,000

-
Costa Rica, Guanacaste
-

Esta impresionante propiedad ofrece vistas inigualables, acabados de mármol y un diseño moderno único en la zona.

-
-
4 Habitaciones
-
3 Baños
-
450m²
-
-
-

Agente Inmobiliario

-

Juan Pérez | +506 8888-8888

-
-
-
+

Propiedad {params.id}

+

Detalle exclusivo de la propiedad seleccionada.

-- 2.49.1