From e1d8c06d867df7f779b8dd12c9d5b9cc2f07c78f Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 19:04:26 +0000 Subject: [PATCH] Update src/app/servicios/compra-propiedad/page.tsx --- src/app/servicios/compra-propiedad/page.tsx | 163 +++++--------------- 1 file changed, 37 insertions(+), 126 deletions(-) diff --git a/src/app/servicios/compra-propiedad/page.tsx b/src/app/servicios/compra-propiedad/page.tsx index 6a11ba3..424888d 100644 --- a/src/app/servicios/compra-propiedad/page.tsx +++ b/src/app/servicios/compra-propiedad/page.tsx @@ -1,23 +1,14 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import Link from "next/link"; import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; import HeroBillboardTestimonial from "@/components/sections/hero/HeroBillboardTestimonial"; import FeatureCardNineteen from "@/components/sections/feature/FeatureCardNineteen"; -import FaqBase from "@/components/sections/faq/FaqBase"; import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal"; -import Link from "next/link"; -import { Shield, Home, CheckCircle } from "lucide-react"; - -export default function CompraPropiedad() { - const navItems = [ - { name: "Inicio", id: "/" }, - { name: "Nosotros", id: "/about" }, - { name: "Servicios", id: "/services" }, - { name: "Preguntas Frecuentes", id: "/faq" }, - { name: "Contacto", id: "/contact" }, - ]; +import { Shield } from "lucide-react"; +export default function CompraPropiedadPage() { return ( ({ - name: item.name, - id: item.id, - }))} + navItems={[ + { name: "Inicio", id: "/" }, + { name: "Nosotros", id: "/nosotros" }, + { name: "Servicios", id: "services" }, + { name: "Preguntas Frecuentes", id: "faq" }, + { name: "Contacto", id: "contact" }, + ]} button={{ - text: "Llamar Ahora", - href: "tel:+523312345678", - }} + text: "Llamar Ahora", href: "tel:+523312345678"}} />
-
+
-
- -
-
@@ -181,13 +96,9 @@ export default function CompraPropiedad() {