Update src/app/page.tsx
This commit is contained in:
253
src/app/page.tsx
253
src/app/page.tsx
@@ -33,21 +33,13 @@ export default function LandingPage() {
|
|||||||
<NavbarStyleFullscreen
|
<NavbarStyleFullscreen
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{
|
||||||
name: "Inicio",
|
name: "Inicio", id: "hero"},
|
||||||
id: "hero",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Servicios",
|
name: "Servicios", id: "services"},
|
||||||
id: "services",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "El Despacho",
|
name: "El Despacho", id: "about"},
|
||||||
id: "about",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Contacto",
|
name: "Contacto", id: "contact"},
|
||||||
id: "contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
brandName="Bufete Jaime Avelino"
|
brandName="Bufete Jaime Avelino"
|
||||||
/>
|
/>
|
||||||
@@ -56,64 +48,41 @@ export default function LandingPage() {
|
|||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroCentered
|
<HeroCentered
|
||||||
background={{
|
background={{
|
||||||
variant: "gradient-bars",
|
variant: "gradient-bars"}}
|
||||||
}}
|
|
||||||
title="Bufete de abogados en Almería | Bufete Jaime Avelino"
|
title="Bufete de abogados en Almería | Bufete Jaime Avelino"
|
||||||
description="Tu despacho de confianza en Almería. Asesoramiento integral, atención personalizada y soluciones eficaces ante accidentes, lesiones y casos de responsabilidad civil."
|
description="Tu despacho de confianza en Almería. Asesoramiento integral, atención personalizada y soluciones eficaces ante accidentes, lesiones y casos de responsabilidad civil."
|
||||||
avatars={[
|
avatars={[
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/cheerful-young-executive-looking-camera_1262-4763.jpg",
|
src: "http://img.b2bpic.net/free-photo/cheerful-young-executive-looking-camera_1262-4763.jpg", alt: "Cliente Satisfecho"},
|
||||||
alt: "Cliente Satisfecho",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/three-businesswomen-shaking-hands-modern-office_1139-963.jpg",
|
src: "http://img.b2bpic.net/free-photo/three-businesswomen-shaking-hands-modern-office_1139-963.jpg", alt: "Cliente Satisfecho"},
|
||||||
alt: "Cliente Satisfecho",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/cheerful-businesswomen-relaxing-cafe_53876-30774.jpg",
|
src: "http://img.b2bpic.net/free-photo/cheerful-businesswomen-relaxing-cafe_53876-30774.jpg", alt: "Cliente Satisfecho"},
|
||||||
alt: "Cliente Satisfecho",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/happy-mature-businessman-showing-thumb-up_1262-3024.jpg",
|
src: "http://img.b2bpic.net/free-photo/happy-mature-businessman-showing-thumb-up_1262-3024.jpg", alt: "Cliente Satisfecho"},
|
||||||
alt: "Cliente Satisfecho",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/portrait-attractive-afroamerican-man_23-2148508906.jpg",
|
src: "http://img.b2bpic.net/free-photo/portrait-attractive-afroamerican-man_23-2148508906.jpg", alt: "Cliente Satisfecho"},
|
||||||
alt: "Cliente Satisfecho",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
avatarText="Más de 500+ clientes satisfechos"
|
avatarText="Más de 500+ clientes satisfechos"
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Contactar ahora",
|
text: "Contactar ahora", href: "#contact"},
|
||||||
href: "#contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
marqueeItems={[
|
marqueeItems={[
|
||||||
{
|
{
|
||||||
type: "text-icon",
|
type: "text-icon", text: "Derecho Civil", icon: Scale,
|
||||||
text: "Derecho Civil",
|
|
||||||
icon: Scale,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: "text-icon",
|
type: "text-icon", text: "Accidentes Laborales", icon: Briefcase,
|
||||||
text: "Accidentes Laborales",
|
|
||||||
icon: Briefcase,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: "text-icon",
|
type: "text-icon", text: "Indemnizaciones", icon: TrendingUp,
|
||||||
text: "Indemnizaciones",
|
|
||||||
icon: TrendingUp,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: "text-icon",
|
type: "text-icon", text: "Asesoramiento Legal", icon: Briefcase,
|
||||||
text: "Asesoramiento Legal",
|
|
||||||
icon: Briefcase,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: "text-icon",
|
type: "text-icon", text: "Negligencias", icon: AlertTriangle,
|
||||||
text: "Negligencias",
|
|
||||||
icon: AlertTriangle,
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
@@ -126,15 +95,11 @@ export default function LandingPage() {
|
|||||||
description="En Bufete Jaime Avelino, nos dedicamos a defender tus derechos con rigor y cercanía. Con años de trayectoria, nuestro objetivo es brindarte tranquilidad y resultados efectivos en cada paso de tu proceso legal."
|
description="En Bufete Jaime Avelino, nos dedicamos a defender tus derechos con rigor y cercanía. Con años de trayectoria, nuestro objetivo es brindarte tranquilidad y resultados efectivos en cada paso de tu proceso legal."
|
||||||
metrics={[
|
metrics={[
|
||||||
{
|
{
|
||||||
value: "15+",
|
value: "15+", title: "Años de experiencia"},
|
||||||
title: "Años de experiencia",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
value: "95%",
|
value: "95%", title: "Casos exitosos"},
|
||||||
title: "Casos exitosos",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/front-view-business-people-talking_23-2148427073.jpg?_wi=1"
|
imageSrc="http://img.b2bpic.net/free-photo/front-view-business-people-talking_23-2148427073.jpg"
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
metricsAnimation="slide-up"
|
metricsAnimation="slide-up"
|
||||||
imageAlt="Abogados reunidos en el despacho analizando un caso"
|
imageAlt="Abogados reunidos en el despacho analizando un caso"
|
||||||
@@ -148,67 +113,43 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
title: "Accidentes de tráfico",
|
title: "Accidentes de tráfico", description: "Gestión integral de indemnizaciones por accidentes de circulación.", media: {
|
||||||
description: "Gestión integral de indemnizaciones por accidentes de circulación.",
|
imageSrc: "http://img.b2bpic.net/free-photo/pensioner-filling-out-aform_53876-165297.jpg", imageAlt: "Reclamaciones por accidentes de tráfico en Almería"},
|
||||||
media: {
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/pensioner-filling-out-aform_53876-165297.jpg",
|
|
||||||
imageAlt: "Reclamaciones por accidentes de tráfico en Almería",
|
|
||||||
},
|
|
||||||
items: [
|
items: [
|
||||||
{
|
{
|
||||||
icon: CheckCircle,
|
icon: CheckCircle,
|
||||||
text: "Reclamación de daños corporales",
|
text: "Reclamación de daños corporales"},
|
||||||
},
|
|
||||||
{
|
{
|
||||||
icon: CheckCircle,
|
icon: CheckCircle,
|
||||||
text: "Asesoramiento pericial médico",
|
text: "Asesoramiento pericial médico"},
|
||||||
},
|
|
||||||
],
|
],
|
||||||
reverse: false,
|
reverse: false,
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/vintage-style-people-working-office-with-computers_23-2149850983.jpg",
|
|
||||||
imageAlt: "car accident legal support",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Accidente Laboral",
|
title: "Accidente Laboral", description: "Defensa de derechos de trabajadores en caso de siniestralidad laboral.", media: {
|
||||||
description: "Defensa de derechos de trabajadores en caso de siniestralidad laboral.",
|
imageSrc: "http://img.b2bpic.net/free-photo/businessman-reaching-agreement-with-real-estate-agent-shaking-hands_482257-90873.jpg", imageAlt: "Derechos laborales y seguridad social"},
|
||||||
media: {
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/businessman-reaching-agreement-with-real-estate-agent-shaking-hands_482257-90873.jpg",
|
|
||||||
imageAlt: "Derechos laborales y seguridad social",
|
|
||||||
},
|
|
||||||
items: [
|
items: [
|
||||||
{
|
{
|
||||||
icon: CheckCircle,
|
icon: CheckCircle,
|
||||||
text: "Seguridad social e incapacidad",
|
text: "Seguridad social e incapacidad"},
|
||||||
},
|
|
||||||
{
|
{
|
||||||
icon: CheckCircle,
|
icon: CheckCircle,
|
||||||
text: "Indemnizaciones laborales",
|
text: "Indemnizaciones laborales"},
|
||||||
},
|
|
||||||
],
|
],
|
||||||
reverse: true,
|
reverse: true,
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-business-people-talking_23-2148427073.jpg?_wi=2",
|
|
||||||
imageAlt: "car accident legal support",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Responsabilidad Civil",
|
title: "Responsabilidad Civil", description: "Soluciones jurídicas ante daños materiales o personales.", media: {
|
||||||
description: "Soluciones jurídicas ante daños materiales o personales.",
|
imageSrc: "http://img.b2bpic.net/free-photo/closeup-shot-businessman-signing-documents_74855-2701.jpg", imageAlt: "Asistencia jurídica en responsabilidad civil"},
|
||||||
media: {
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-shot-businessman-signing-documents_74855-2701.jpg",
|
|
||||||
imageAlt: "Asistencia jurídica en responsabilidad civil",
|
|
||||||
},
|
|
||||||
items: [
|
items: [
|
||||||
{
|
{
|
||||||
icon: CheckCircle,
|
icon: CheckCircle,
|
||||||
text: "Negligencias médicas y profesionales",
|
text: "Negligencias médicas y profesionales"},
|
||||||
},
|
|
||||||
{
|
{
|
||||||
icon: CheckCircle,
|
icon: CheckCircle,
|
||||||
text: "Daños ocasionados por terceros",
|
text: "Daños ocasionados por terceros"},
|
||||||
},
|
|
||||||
],
|
],
|
||||||
reverse: false,
|
reverse: false,
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/young-entrepreneurs-mature-investor-watching-presentation-discussing-project_74855-10462.jpg?_wi=1",
|
|
||||||
imageAlt: "car accident legal support",
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
title="Nuestros Servicios Legales"
|
title="Nuestros Servicios Legales"
|
||||||
@@ -223,23 +164,14 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
metrics={[
|
metrics={[
|
||||||
{
|
{
|
||||||
id: "m1",
|
id: "m1", icon: Award,
|
||||||
icon: Award,
|
title: "Sentencias ganadas", value: "1200+"},
|
||||||
title: "Sentencias ganadas",
|
|
||||||
value: "1200+",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "m2",
|
id: "m2", icon: Shield,
|
||||||
icon: Shield,
|
title: "Clientes protegidos", value: "2000+"},
|
||||||
title: "Clientes protegidos",
|
|
||||||
value: "2000+",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "m3",
|
id: "m3", icon: Users,
|
||||||
icon: Users,
|
title: "Años de servicio", value: "15"},
|
||||||
title: "Años de servicio",
|
|
||||||
value: "15",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Resultados que nos avalan"
|
title="Resultados que nos avalan"
|
||||||
description="La confianza de nuestros clientes es nuestro mayor logro en el sector legal."
|
description="La confianza de nuestros clientes es nuestro mayor logro en el sector legal."
|
||||||
@@ -253,40 +185,15 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", name: "Juan Pérez", handle: "@juanp", testimonial: "Excelente trato, muy profesionales en todo momento. Me ayudaron con todo.", imageSrc: "http://img.b2bpic.net/free-photo/closeup-smiling-beautiful-adult-businesswoman_1262-1760.jpg"},
|
||||||
name: "Juan Pérez",
|
|
||||||
handle: "@juanp",
|
|
||||||
testimonial: "Excelente trato, muy profesionales en todo momento. Me ayudaron con todo.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-smiling-beautiful-adult-businesswoman_1262-1760.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", name: "María García", handle: "@mariag", testimonial: "Lograron la indemnización que esperaba tras mi accidente. Totalmente recomendados.", imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-businessman-suit-looking-camera-meeting_1163-4654.jpg"},
|
||||||
name: "María García",
|
|
||||||
handle: "@mariag",
|
|
||||||
testimonial: "Lograron la indemnización que esperaba tras mi accidente. Totalmente recomendados.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-businessman-suit-looking-camera-meeting_1163-4654.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", name: "Luis López", handle: "@luisl", testimonial: "Muy recomendables para cualquier accidente laboral. Gente seria y eficiente.", imageSrc: "http://img.b2bpic.net/free-photo/successful-man-pointing-camera-with-finger_1262-3118.jpg"},
|
||||||
name: "Luis López",
|
|
||||||
handle: "@luisl",
|
|
||||||
testimonial: "Muy recomendables para cualquier accidente laboral. Gente seria y eficiente.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/successful-man-pointing-camera-with-finger_1262-3118.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "4",
|
id: "4", name: "Ana Martínez", handle: "@anam", testimonial: "Transparencia total en el proceso legal. Gracias por vuestra paciencia.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-senior-secretary-with-papers_1262-5366.jpg"},
|
||||||
name: "Ana Martínez",
|
|
||||||
handle: "@anam",
|
|
||||||
testimonial: "Transparencia total en el proceso legal. Gracias por vuestra paciencia.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-senior-secretary-with-papers_1262-5366.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "5",
|
id: "5", name: "Carlos Ruiz", handle: "@carlosr", testimonial: "Un equipo humano y jurídico excepcional en la ciudad.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-woman-business-embrace-confidence-posing-beauty-black-african-american-isolated-gray-background_640221-39.jpg"},
|
||||||
name: "Carlos Ruiz",
|
|
||||||
handle: "@carlosr",
|
|
||||||
testimonial: "Un equipo humano y jurídico excepcional en la ciudad.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-woman-business-embrace-confidence-posing-beauty-black-african-american-isolated-gray-background_640221-39.jpg",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Lo que dicen nuestros clientes"
|
title="Lo que dicen nuestros clientes"
|
||||||
description="Atención personalizada y resultados que marcan la diferencia en Almería."
|
description="Atención personalizada y resultados que marcan la diferencia en Almería."
|
||||||
@@ -302,35 +209,11 @@ export default function LandingPage() {
|
|||||||
description="Artículos informativos para proteger tus intereses legales y estar bien informado."
|
description="Artículos informativos para proteger tus intereses legales y estar bien informado."
|
||||||
blogs={[
|
blogs={[
|
||||||
{
|
{
|
||||||
id: "b1",
|
id: "b1", category: "Tráfico", title: "Pasos tras un accidente de tráfico", excerpt: "Guía básica de actuación inmediata para proteger tus derechos tras un siniestro vial.", imageSrc: "http://img.b2bpic.net/free-photo/wooden-gavel-books-wooden-table_93675-130727.jpg", authorName: "Jaime Avelino", authorAvatar: "http://img.b2bpic.net/free-photo/smiling-senior-businessman-sitting-stairs_1262-3109.jpg", date: "10 Ene 2024"},
|
||||||
category: "Tráfico",
|
|
||||||
title: "Pasos tras un accidente de tráfico",
|
|
||||||
excerpt: "Guía básica de actuación inmediata para proteger tus derechos tras un siniestro vial.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/wooden-gavel-books-wooden-table_93675-130727.jpg",
|
|
||||||
authorName: "Jaime Avelino",
|
|
||||||
authorAvatar: "http://img.b2bpic.net/free-photo/smiling-senior-businessman-sitting-stairs_1262-3109.jpg",
|
|
||||||
date: "10 Ene 2024",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "b2",
|
id: "b2", category: "Laboral", title: "Derechos ante siniestros laborales", excerpt: "Lo que debes saber para reclamar cuando sufres un accidente en tu puesto de trabajo.", imageSrc: "http://img.b2bpic.net/free-photo/low-angle-bible-with-golden-pages-bookmarks-warm-light-bible-angle_169016-71324.jpg", authorName: "Equipo Jurídico", authorAvatar: "http://img.b2bpic.net/free-photo/smiling-insurance-agent-going-through-paperwork-communicating-with-her-clients-meeting_637285-5796.jpg", date: "15 Feb 2024"},
|
||||||
category: "Laboral",
|
|
||||||
title: "Derechos ante siniestros laborales",
|
|
||||||
excerpt: "Lo que debes saber para reclamar cuando sufres un accidente en tu puesto de trabajo.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/low-angle-bible-with-golden-pages-bookmarks-warm-light-bible-angle_169016-71324.jpg",
|
|
||||||
authorName: "Equipo Jurídico",
|
|
||||||
authorAvatar: "http://img.b2bpic.net/free-photo/smiling-insurance-agent-going-through-paperwork-communicating-with-her-clients-meeting_637285-5796.jpg",
|
|
||||||
date: "15 Feb 2024",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "b3",
|
id: "b3", category: "Civil", title: "Guía de responsabilidad civil", excerpt: "Entendiendo los conceptos básicos sobre indemnizaciones por daños a terceros.", imageSrc: "http://img.b2bpic.net/free-photo/judge-gavel-auction-law-court-concept_53876-125416.jpg", authorName: "Jaime Avelino", authorAvatar: "http://img.b2bpic.net/free-photo/business-partners-worried-woman-table_1262-1692.jpg", date: "05 Mar 2024"},
|
||||||
category: "Civil",
|
|
||||||
title: "Guía de responsabilidad civil",
|
|
||||||
excerpt: "Entendiendo los conceptos básicos sobre indemnizaciones por daños a terceros.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/judge-gavel-auction-law-court-concept_53876-125416.jpg",
|
|
||||||
authorName: "Jaime Avelino",
|
|
||||||
authorAvatar: "http://img.b2bpic.net/free-photo/business-partners-worried-woman-table_1262-1692.jpg",
|
|
||||||
date: "05 Mar 2024",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -341,22 +224,13 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
faqs={[
|
faqs={[
|
||||||
{
|
{
|
||||||
id: "f1",
|
id: "f1", title: "¿Cuándo puedo reclamar una indemnización?", content: "Tan pronto como se produzca el daño o accidente, contacta con nosotros para evaluar tu caso lo antes posible."},
|
||||||
title: "¿Cuándo puedo reclamar una indemnización?",
|
|
||||||
content: "Tan pronto como se produzca el daño o accidente, contacta con nosotros para evaluar tu caso lo antes posible.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "f2",
|
id: "f2", title: "¿Cuánto cuesta la primera consulta?", content: "Ofrecemos una primera consulta informativa sin compromiso para evaluar la viabilidad de tu caso."},
|
||||||
title: "¿Cuánto cuesta la primera consulta?",
|
|
||||||
content: "Ofrecemos una primera consulta informativa sin compromiso para evaluar la viabilidad de tu caso.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "f3",
|
id: "f3", title: "¿Qué necesito para iniciar mi caso?", content: "Necesitarás toda la documentación médica, partes policiales y datos del siniestro relacionados con el hecho."},
|
||||||
title: "¿Qué necesito para iniciar mi caso?",
|
|
||||||
content: "Necesitarás toda la documentación médica, partes policiales y datos del siniestro relacionados con el hecho.",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/young-entrepreneurs-mature-investor-watching-presentation-discussing-project_74855-10462.jpg?_wi=2"
|
imageSrc="http://img.b2bpic.net/free-photo/young-entrepreneurs-mature-investor-watching-presentation-discussing-project_74855-10462.jpg"
|
||||||
title="Preguntas Frecuentes"
|
title="Preguntas Frecuentes"
|
||||||
description="Resolvemos tus dudas legales más comunes para que tengas claridad en tu proceso."
|
description="Resolvemos tus dudas legales más comunes para que tengas claridad en tu proceso."
|
||||||
faqsAnimation="slide-up"
|
faqsAnimation="slide-up"
|
||||||
@@ -368,14 +242,11 @@ export default function LandingPage() {
|
|||||||
<ContactText
|
<ContactText
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
background={{
|
background={{
|
||||||
variant: "gradient-bars",
|
variant: "gradient-bars"}}
|
||||||
}}
|
|
||||||
text="Bufete Jaime Avelino - Defensa legal en Almería. Estamos a tu disposición para ayudarte a obtener justicia."
|
text="Bufete Jaime Avelino - Defensa legal en Almería. Estamos a tu disposición para ayudarte a obtener justicia."
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Llamar ahora",
|
text: "Llamar ahora", href: "tel:+34950000000"},
|
||||||
href: "tel:+34950000000",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -384,29 +255,19 @@ export default function LandingPage() {
|
|||||||
<FooterSimple
|
<FooterSimple
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Servicios",
|
title: "Servicios", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "Indemnizaciones",
|
label: "Indemnizaciones", href: "#services"},
|
||||||
href: "#services",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Accidentes",
|
label: "Accidentes", href: "#services"},
|
||||||
href: "#services",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Legal",
|
title: "Legal", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "Aviso Legal",
|
label: "Aviso Legal", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Política de Privacidad",
|
label: "Política de Privacidad", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
|
|||||||
Reference in New Issue
Block a user