Merge version_1 into main
Merge version_1 into main
This commit was merged in pull request #1.
This commit is contained in:
240
src/app/page.tsx
240
src/app/page.tsx
@@ -29,91 +29,42 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Inicio",
|
||||
id: "hero",
|
||||
},
|
||||
{
|
||||
name: "Propiedades",
|
||||
id: "properties",
|
||||
},
|
||||
{
|
||||
name: "Sobre Nosotros",
|
||||
id: "about",
|
||||
},
|
||||
{
|
||||
name: "Contacto",
|
||||
id: "contact",
|
||||
},
|
||||
{ name: "Inicio", id: "hero" },
|
||||
{ name: "Propiedades", id: "properties" },
|
||||
{ name: "Sobre Nosotros", id: "about" },
|
||||
{ name: "Contacto", id: "contact" },
|
||||
]}
|
||||
brandName="CasaIdeal"
|
||||
button={{ text: "Reservar", href: "#contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboard
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
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",
|
||||
},
|
||||
{ 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",
|
||||
},
|
||||
{ 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",
|
||||
},
|
||||
{ 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>
|
||||
@@ -123,21 +74,9 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
title="Expertos en tu bienestar inmobiliario"
|
||||
metrics={[
|
||||
{
|
||||
icon: Home,
|
||||
label: "Propiedades Vendidas",
|
||||
value: "1,200+",
|
||||
},
|
||||
{
|
||||
icon: Key,
|
||||
label: "Alquileres Gestionados",
|
||||
value: "850+",
|
||||
},
|
||||
{
|
||||
icon: Award,
|
||||
label: "Años de Experiencia",
|
||||
value: "15+",
|
||||
},
|
||||
{ icon: Home, label: "Propiedades Vendidas", value: "1,200+" },
|
||||
{ icon: Key, label: "Alquileres Gestionados", value: "850+" },
|
||||
{ icon: Award, label: "Años de Experiencia", value: "15+" },
|
||||
]}
|
||||
metricsAnimation="slide-up"
|
||||
/>
|
||||
@@ -150,42 +89,12 @@ export default function LandingPage() {
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
name: "Apartamento Moderno",
|
||||
price: "1.200€/mes",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-making-her-bed-scandinavian-interior-style_53876-125364.jpg",
|
||||
},
|
||||
{
|
||||
id: "p2",
|
||||
name: "Casa Familiar Espaciosa",
|
||||
price: "450.000€",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-luxury-villa-with-pool_23-2151974385.jpg",
|
||||
},
|
||||
{
|
||||
id: "p3",
|
||||
name: "Penthouse de Lujo",
|
||||
price: "850.000€",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-office-building-facade_158595-5074.jpg",
|
||||
},
|
||||
{
|
||||
id: "p4",
|
||||
name: "Flat Renovado",
|
||||
price: "950€/mes",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/vineyard-landscape-with-nature-grapevines_23-2151514932.jpg",
|
||||
},
|
||||
{
|
||||
id: "p5",
|
||||
name: "Chalet con Jardín",
|
||||
price: "520.000€",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/china-old-garden_1127-3660.jpg",
|
||||
},
|
||||
{
|
||||
id: "p6",
|
||||
name: "Loft Urbano",
|
||||
price: "1.400€/mes",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/business-building-downtown-concept_53876-42976.jpg",
|
||||
},
|
||||
{ id: "p1", name: "Apartamento Moderno", price: "1.200€/mes", imageSrc: "http://img.b2bpic.net/free-photo/woman-making-her-bed-scandinavian-interior-style_53876-125364.jpg" },
|
||||
{ id: "p2", name: "Casa Familiar Espaciosa", price: "450.000€", imageSrc: "http://img.b2bpic.net/free-photo/modern-luxury-villa-with-pool_23-2151974385.jpg" },
|
||||
{ id: "p3", name: "Penthouse de Lujo", price: "850.000€", imageSrc: "http://img.b2bpic.net/free-photo/modern-office-building-facade_158595-5074.jpg" },
|
||||
{ id: "p4", name: "Flat Renovado", price: "950€/mes", imageSrc: "http://img.b2bpic.net/free-photo/vineyard-landscape-with-nature-grapevines_23-2151514932.jpg" },
|
||||
{ id: "p5", name: "Chalet con Jardín", price: "520.000€", imageSrc: "http://img.b2bpic.net/free-photo/china-old-garden_1127-3660.jpg" },
|
||||
{ id: "p6", name: "Loft Urbano", price: "1.400€/mes", imageSrc: "http://img.b2bpic.net/free-photo/business-building-downtown-concept_53876-42976.jpg" },
|
||||
]}
|
||||
title="Propiedades Destacadas"
|
||||
description="Descubre las últimas oportunidades disponibles en el mercado."
|
||||
@@ -198,60 +107,16 @@ export default function LandingPage() {
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "t1",
|
||||
name: "Elena García",
|
||||
role: "Propietaria",
|
||||
company: "Cliente Feliz",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-waving-hand-outside_23-2149447136.jpg",
|
||||
},
|
||||
{
|
||||
id: "t2",
|
||||
name: "Carlos Ruiz",
|
||||
role: "Inversor",
|
||||
company: "Cliente Feliz",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-people-working-as-real-estate-agents_23-2151064997.jpg",
|
||||
},
|
||||
{
|
||||
id: "t3",
|
||||
name: "Lucía Martínez",
|
||||
role: "Inquilina",
|
||||
company: "Cliente Feliz",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-family-unpacking-boxes_23-2148252095.jpg",
|
||||
},
|
||||
{
|
||||
id: "t4",
|
||||
name: "Javier López",
|
||||
role: "Comprador",
|
||||
company: "Cliente Feliz",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-real-estate-agent-doing-business-showing-house-potential-buying-couple_23-2150164717.jpg",
|
||||
},
|
||||
{
|
||||
id: "t5",
|
||||
name: "Sofía Torres",
|
||||
role: "Inquilina",
|
||||
company: "Cliente Feliz",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/people-recording-their-house-tour_23-2151139097.jpg",
|
||||
},
|
||||
{ id: "t1", name: "Elena García", role: "Propietaria", company: "Cliente Feliz", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/man-waving-hand-outside_23-2149447136.jpg" },
|
||||
{ id: "t2", name: "Carlos Ruiz", role: "Inversor", company: "Cliente Feliz", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/side-view-people-working-as-real-estate-agents_23-2151064997.jpg" },
|
||||
{ id: "t3", name: "Lucía Martínez", role: "Inquilina", company: "Cliente Feliz", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/happy-family-unpacking-boxes_23-2148252095.jpg" },
|
||||
{ id: "t4", name: "Javier López", role: "Comprador", company: "Cliente Feliz", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/male-real-estate-agent-doing-business-showing-house-potential-buying-couple_23-2150164717.jpg" },
|
||||
{ id: "t5", name: "Sofía Torres", role: "Inquilina", company: "Cliente Feliz", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/people-recording-their-house-tour_23-2151139097.jpg" },
|
||||
]}
|
||||
kpiItems={[
|
||||
{
|
||||
value: "4.9/5",
|
||||
label: "Valoración Promedio",
|
||||
},
|
||||
{
|
||||
value: "98%",
|
||||
label: "Recomendaciones",
|
||||
},
|
||||
{
|
||||
value: "24/7",
|
||||
label: "Soporte al Cliente",
|
||||
},
|
||||
{ value: "4.9/5", label: "Valoración Promedio" },
|
||||
{ value: "98%", label: "Recomendaciones" },
|
||||
{ value: "24/7", label: "Soporte al Cliente" },
|
||||
]}
|
||||
title="Lo que dicen nuestros clientes"
|
||||
description="Tu satisfacción es nuestra mayor recompensa. Descubre cómo ayudamos a otros a encontrar su espacio ideal."
|
||||
@@ -261,15 +126,10 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactText
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
background={{ variant: "gradient-bars" }}
|
||||
text="Estamos listos para ayudarte a dar el siguiente paso. Ponte en contacto con nuestro equipo hoy mismo."
|
||||
buttons={[
|
||||
{
|
||||
text: "Contactar Equipo",
|
||||
href: "mailto:info@casaideal.com",
|
||||
},
|
||||
{ text: "Contactar Equipo", href: "mailto:info@casaideal.com" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -279,29 +139,15 @@ export default function LandingPage() {
|
||||
logoText="CasaIdeal"
|
||||
columns={[
|
||||
{
|
||||
title: "Empresa",
|
||||
items: [
|
||||
{
|
||||
label: "Quiénes somos",
|
||||
href: "#about",
|
||||
},
|
||||
{
|
||||
label: "Propiedades",
|
||||
href: "#properties",
|
||||
},
|
||||
title: "Empresa", items: [
|
||||
{ label: "Quiénes somos", href: "#about" },
|
||||
{ label: "Propiedades", href: "#properties" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
{
|
||||
label: "Política de Privacidad",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Términos y Condiciones",
|
||||
href: "#",
|
||||
},
|
||||
title: "Legal", items: [
|
||||
{ label: "Política de Privacidad", href: "#" },
|
||||
{ label: "Términos y Condiciones", href: "#" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user