Merge version_2 into main #3

Merged
bender merged 1 commits from version_2 into main 2026-04-08 14:17:30 +00:00

View File

@@ -5,7 +5,6 @@ import ReactLenis from "lenis/react";
import AboutMetric from '@/components/sections/about/AboutMetric';
import ContactText from '@/components/sections/contact/ContactText';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import HeroBillboard from '@/components/sections/hero/HeroBillboard';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import ProductCardThree from '@/components/sections/product/ProductCardThree';
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
@@ -29,7 +28,7 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{ name: "Inicio", id: "hero" },
{ name: "Inicio", id: "#hero" },
{ name: "Propiedades", id: "properties" },
{ name: "Sobre Nosotros", id: "about" },
{ name: "Contacto", id: "contact" },
@@ -39,36 +38,6 @@ export default function LandingPage() {
/>
</div>
<div id="hero" data-section="hero">
<HeroBillboard
background={{ variant: "gradient-bars" }}
title="Encuentra tu próximo hogar"
description="Explora nuestra selección exclusiva de propiedades en venta y alquiler. Calidad, confianza y profesionalismo en cada trámite."
buttons={[
{ text: "Ver Propiedades", href: "#properties" },
{ text: "Contactar", href: "#contact" },
]}
imageSrc="http://img.b2bpic.net/free-photo/vertical-low-angle-shot-stone-metal-building-blue-sky_181624-7605.jpg"
imageAlt="Real estate properties showcase"
mediaAnimation="blur-reveal"
avatars={[
{ src: "http://img.b2bpic.net/free-photo/man-waving-hand-outside_23-2149447136.jpg", alt: "Cliente 1" },
{ src: "http://img.b2bpic.net/free-photo/side-view-people-working-as-real-estate-agents_23-2151064997.jpg", alt: "Cliente 2" },
{ src: "http://img.b2bpic.net/free-photo/happy-family-unpacking-boxes_23-2148252095.jpg", alt: "Cliente 3" },
{ src: "http://img.b2bpic.net/free-photo/male-real-estate-agent-doing-business-showing-house-potential-buying-couple_23-2150164717.jpg", alt: "Cliente 4" },
{ src: "http://img.b2bpic.net/free-photo/people-recording-their-house-tour_23-2151139097.jpg", alt: "Cliente 5" },
]}
avatarText="Más de 2.000 clientes satisfechos confían en nosotros."
marqueeItems={[
{ type: "text", text: "Ventas Seguras" },
{ type: "text", text: "Alquileres Garantizados" },
{ type: "text", text: "Asesoramiento Legal" },
{ type: "text", text: "Tasaciones Rápidas" },
{ type: "text", text: "Inversión Inteligente" },
]}
/>
</div>
<div id="about" data-section="about">
<AboutMetric
useInvertedBackground={false}
@@ -157,4 +126,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}