Merge version_1 into main
Merge version_1 into main
This commit was merged in pull request #1.
This commit is contained in:
478
src/app/page.tsx
478
src/app/page.tsx
@@ -1,369 +1,127 @@
|
||||
"use client";
|
||||
|
||||
'use client';
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import HeroBillboard from '@/components/sections/hero/HeroBillboard';
|
||||
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
||||
import AboutMetric from '@/components/sections/about/AboutMetric';
|
||||
import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree';
|
||||
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
|
||||
import BlogCardThree from '@/components/sections/blog/BlogCardThree';
|
||||
import ContactText from '@/components/sections/contact/ContactText';
|
||||
import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree';
|
||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||
import HeroBillboard from '@/components/sections/hero/HeroBillboard';
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
||||
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
|
||||
import { Award, Star, Users } from "lucide-react";
|
||||
import { Award, Users, Star } from 'lucide-react';
|
||||
|
||||
export default function LandingPage() {
|
||||
const navItems = [
|
||||
{ name: "Inicio", id: "/" },
|
||||
{ name: "La Firma", id: "/la-firma" }
|
||||
];
|
||||
|
||||
export default function Page() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="soft"
|
||||
contentWidth="medium"
|
||||
sizing="mediumLarge"
|
||||
background="noise"
|
||||
cardStyle="inset"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="solid"
|
||||
headingFontWeight="extrabold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Inicio",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "La Firma",
|
||||
id: "/la-firma",
|
||||
},
|
||||
{
|
||||
name: "Servicios",
|
||||
id: "/servicios",
|
||||
},
|
||||
{
|
||||
name: "Contacto",
|
||||
id: "/contacto",
|
||||
},
|
||||
]}
|
||||
brandName="AGL"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboard
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
title="Asesoramiento con criterio desde 1975."
|
||||
description="Acompañamos a empresas, autónomos y profesionales en Barcelona en cada decisión fiscal, laboral y mercantil que define su futuro. Cinco décadas haciéndolo bien."
|
||||
buttons={[
|
||||
{
|
||||
text: "Solicitar consulta gratuita",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
text: "Conocer la firma",
|
||||
href: "/la-firma",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/flat-lay-desk-concept-with-copy-space_23-2148459655.jpg"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/positive-confident-businesswoman-wearing-formal-suit-standing-with-arms-folded_74855-10328.jpg",
|
||||
alt: "Consultora fiscal",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/closeup-smiling-middle-aged-business-leader_1262-4845.jpg",
|
||||
alt: "Líder de equipo",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/young-businesswoman-portrait-office_1262-1506.jpg",
|
||||
alt: "Asesora laboral",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/happy-young-professional-posing-office_1262-21170.jpg",
|
||||
alt: "Especialista mercantil",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/professional-woman-smiling_23-2152009549.jpg",
|
||||
alt: "Directora de área",
|
||||
},
|
||||
]}
|
||||
avatarText="Nuestro equipo de expertos"
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text",
|
||||
text: "Barcelona",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Fiscalidad",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Legal",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Nóminas",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Consultoría",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="trust" data-section="trust">
|
||||
<SocialProofOne
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
names={[
|
||||
"Punt PAE acreditado",
|
||||
"PIMEC",
|
||||
"Col·legi de Graduats Socials",
|
||||
"AEAT",
|
||||
"Cambra de Comerç",
|
||||
"Google 4,8/5",
|
||||
]}
|
||||
title="RECONOCIMIENTOS Y ACREDITACIONES"
|
||||
description="Avalamos nuestro compromiso con la excelencia y la normativa vigente."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="manifesto" data-section="manifesto">
|
||||
<AboutMetric
|
||||
useInvertedBackground={false}
|
||||
title="No somos una gestoría más. Somos los asesores en los que tres generaciones de empresarios catalanes han confiado."
|
||||
metrics={[
|
||||
{
|
||||
icon: Award,
|
||||
label: "Años de servicio",
|
||||
value: "50",
|
||||
},
|
||||
{
|
||||
icon: Users,
|
||||
label: "Profesionales",
|
||||
value: "17",
|
||||
},
|
||||
{
|
||||
icon: Star,
|
||||
label: "Rating Google",
|
||||
value: "4,8",
|
||||
},
|
||||
]}
|
||||
metricsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="servicios" data-section="servicios">
|
||||
<FeatureCardThree
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "Fiscal",
|
||||
description: "Planificación estratégica y representación.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/3d-background-with-hexagonal-shapes-texture_23-2150473190.jpg",
|
||||
},
|
||||
{
|
||||
title: "Laboral",
|
||||
description: "Nóminas, contratación y Seguridad Social.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/visa-application-form-laptop_23-2149117779.jpg",
|
||||
},
|
||||
{
|
||||
title: "Contable",
|
||||
description: "Cuentas anuales y gestión analítica.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/digital-devices-displaying-company-data_482257-119238.jpg",
|
||||
},
|
||||
{
|
||||
title: "Jurídico-Mercantil",
|
||||
description: "Contratos y asesoramiento estratégico.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-reading-financial-documents-conference-room-before-signing-it_482257-5110.jpg",
|
||||
},
|
||||
{
|
||||
title: "Constitución",
|
||||
description: "Punt PAE acreditado. Sociedad en 48h.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/office-teamwork-session_482257-120255.jpg",
|
||||
},
|
||||
{
|
||||
title: "Cumplimiento",
|
||||
description: "RGPD, blanqueo y canales de denuncia.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/still-life-documents-stack_23-2151088782.jpg",
|
||||
},
|
||||
]}
|
||||
title="Áreas de práctica"
|
||||
description="Un servicio integral, ejecutado con la precisión de un especialista."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardSix
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Olga Rodellar",
|
||||
handle: "Cliente 20+ años",
|
||||
testimonial: "Llevo más de 20 años trabajando con AGL. Forman un excelente equipo.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-smiling-beautiful-adult-businesswoman_1262-1760.jpg",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Josep (Vincle Cerdanya)",
|
||||
handle: "Cliente 2005",
|
||||
testimonial: "La empresa ha pasado por momentos espléndidos y otros delicados, pero AGL siempre ha estado ahí.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-man-black-suit_23-2148401442.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Alberto Bucciante",
|
||||
handle: "Fundador",
|
||||
testimonial: "Eficiencia impresionante. Extremadamente organizados, siempre con explicaciones claras.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pretty-attractive-young-mixed-race-model-with-large-afro-wearing-navy-jacket-her-naked-body-shorts_633478-1216.jpg",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Cynthia Urbano",
|
||||
handle: "Recomendación PIMEC",
|
||||
testimonial: "Excelente servicio. Siempre buscando la mejor solución para el cliente.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/studio-portrait-serious-bearded-male-dressed-suit_613910-5596.jpg",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Cliente Anónimo",
|
||||
handle: "Empresa",
|
||||
testimonial: "La profesionalidad con la que tratan cada tema fiscal es encomiable.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiley-woman_23-2149022644.jpg",
|
||||
},
|
||||
]}
|
||||
title="Testimonios"
|
||||
description="Lo que dicen quienes nos conocen."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="blog" data-section="blog">
|
||||
<BlogCardThree
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Actualidad"
|
||||
description="Lo que necesitas saber este mes."
|
||||
blogs={[
|
||||
{
|
||||
id: "b1",
|
||||
category: "Fiscal",
|
||||
title: "Seguridad Social 2026",
|
||||
excerpt: "Cambios en la cotización para salarios altos.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/visa-application-form-wooden-table-visa-processing-registration-flat-lay_169016-16624.jpg",
|
||||
authorName: "AGL",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/3d-cartoon-style-character_23-2151034128.jpg",
|
||||
date: "2025-10",
|
||||
},
|
||||
{
|
||||
id: "b2",
|
||||
category: "Normativa",
|
||||
title: "Facturación 2025",
|
||||
excerpt: "Nuevos plazos para el sistema de facturación.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/stack-papers-tax-concept-illustration_53876-71434.jpg",
|
||||
authorName: "AGL",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/3d-rendering-cartoon-business-men_23-2150797698.jpg",
|
||||
date: "2025-09",
|
||||
},
|
||||
{
|
||||
id: "b3",
|
||||
category: "Fiscal",
|
||||
title: "Cierre 2025",
|
||||
excerpt: "Siete decisiones antes de finalizar diciembre.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/table-with-finance-work-stuff-laptop-coffee-money-tablet-pen-papers_1268-17460.jpg",
|
||||
authorName: "AGL",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/men-cartoon-characters-together_23-2150964453.jpg",
|
||||
date: "2025-08",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactText
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
text="La primera consulta es gratuita. La tranquilidad que sigue, no tiene precio."
|
||||
buttons={[
|
||||
{
|
||||
text: "Reservar consulta",
|
||||
href: "#",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseReveal
|
||||
logoText="AGL"
|
||||
columns={[
|
||||
{
|
||||
title: "Áreas",
|
||||
items: [
|
||||
{
|
||||
label: "Fiscal",
|
||||
href: "/servicios",
|
||||
},
|
||||
{
|
||||
label: "Laboral",
|
||||
href: "/servicios",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Firma",
|
||||
items: [
|
||||
{
|
||||
label: "La Firma",
|
||||
href: "/la-firma",
|
||||
},
|
||||
{
|
||||
label: "Actualidad",
|
||||
href: "/blog",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contacto",
|
||||
items: [
|
||||
{
|
||||
label: "Barcelona",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
{
|
||||
label: "Privacidad",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Cookies",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
<ThemeProvider>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay navItems={navItems} brandName="AGL" />
|
||||
</div>
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboard
|
||||
title="Asesoramiento con criterio desde 1975."
|
||||
description="Acompañamos a empresas, autónomos y profesionales en Barcelona en cada decisión fiscal, laboral y mercantil que define su futuro. Cinco décadas haciéndolo bien."
|
||||
background={{ variant: "plain" }}
|
||||
buttons={[{ text: "Solicitar consulta gratuita", href: "#" }, { text: "Conocer la firma", href: "/la-firma" }]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/flat-lay-desk-concept-with-copy-space_23-2148459655.jpg"
|
||||
avatars={[
|
||||
{ src: "http://img.b2bpic.net/free-photo/positive-confident-businesswoman-wearing-formal-suit-standing-with-arms-folded_74855-10328.jpg", alt: "Consultora fiscal" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/closeup-smiling-middle-aged-business-leader_1262-4845.jpg", alt: "Líder de equipo" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/young-businesswoman-portrait-office_1262-1506.jpg", alt: "Asesora laboral" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/happy-young-professional-posing-office_1262-21170.jpg", alt: "Especialista mercantil" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/professional-woman-smiling_23-2152009549.jpg", alt: "Directora de área" }
|
||||
]}
|
||||
avatarText="Nuestro equipo de expertos"
|
||||
marqueeItems={[{ type: "text", text: "Barcelona" }, { type: "text", text: "Fiscalidad" }, { type: "text", text: "Legal" }, { type: "text", text: "Nóminas" }, { type: "text", text: "Consultoría" }]}
|
||||
/>
|
||||
</div>
|
||||
<div id="trust" data-section="trust">
|
||||
<SocialProofOne
|
||||
names={["Punt PAE acreditado", "PIMEC", "Col·legi de Graduats Socials", "AEAT", "Cambra de Comerç", "Google 4,8/5"]}
|
||||
title="RECONOCIMIENTOS Y ACREDITACIONES"
|
||||
description="Avalamos nuestro compromiso con la excelencia y la normativa vigente."
|
||||
textboxLayout="default"
|
||||
/>
|
||||
</div>
|
||||
<div id="manifesto" data-section="manifesto">
|
||||
<AboutMetric
|
||||
title="No somos una gestoría más. Somos los asesores en los que tres generaciones de empresarios catalanes han confiado."
|
||||
metrics={[
|
||||
{ icon: Award, label: "Años de servicio", value: "50" },
|
||||
{ icon: Users, label: "Profesionales", value: "17" },
|
||||
{ icon: Star, label: "Rating Google", value: "4,8" }
|
||||
]}
|
||||
metricsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
<div id="servicios" data-section="servicios">
|
||||
<FeatureCardThree
|
||||
title="Áreas de práctica"
|
||||
description="Un servicio integral, ejecutado con la precisión de un especialista."
|
||||
gridVariant="uniform-all-items-equal"
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
features={[
|
||||
{ title: "Fiscal", description: "Planificación estratégica y representación.", imageSrc: "http://img.b2bpic.net/free-photo/3d-background-with-hexagonal-shapes-texture_23-2150473190.jpg" },
|
||||
{ title: "Laboral", description: "Nóminas, contratación y Seguridad Social.", imageSrc: "http://img.b2bpic.net/free-photo/visa-application-form-laptop_23-2149117779.jpg" },
|
||||
{ title: "Contable", description: "Cuentas anuales y gestión analítica.", imageSrc: "http://img.b2bpic.net/free-photo/digital-devices-displaying-company-data_482257-119238.jpg" },
|
||||
{ title: "Jurídico-Mercantil", description: "Contratos y asesoramiento estratégico.", imageSrc: "http://img.b2bpic.net/free-photo/woman-reading-financial-documents-conference-room-before-signing-it_482257-5110.jpg" },
|
||||
{ title: "Constitución", description: "Punt PAE acreditado. Sociedad en 48h.", imageSrc: "http://img.b2bpic.net/free-photo/office-teamwork-session_482257-120255.jpg" },
|
||||
{ title: "Cumplimiento", description: "RGPD, blanqueo y canales de denuncia.", imageSrc: "http://img.b2bpic.net/free-photo/still-life-documents-stack_23-2151088782.jpg" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardSix
|
||||
title="Testimonios"
|
||||
description="Lo que dicen quienes nos conocen."
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
testimonials={[
|
||||
{ id: "1", name: "Olga Rodellar", handle: "Cliente 20+ años", testimonial: "Llevo más de 20 años trabajando con AGL. Forman un excelente equipo.", imageSrc: "http://img.b2bpic.net/free-photo/closeup-smiling-beautiful-adult-businesswoman_1262-1760.jpg" },
|
||||
{ id: "2", name: "Josep (Vincle Cerdanya)", handle: "Cliente 2005", testimonial: "La empresa ha pasado por momentos espléndidos y otros delicados, pero AGL siempre ha estado ahí.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-man-black-suit_23-2148401442.jpg" },
|
||||
{ id: "3", name: "Alberto Bucciante", handle: "Fundador", testimonial: "Eficiencia impresionante. Extremadamente organizados, siempre con explicaciones claras.", imageSrc: "http://img.b2bpic.net/free-photo/pretty-attractive-young-mixed-race-model-with-large-afro-wearing-navy-jacket-her-naked-body-shorts_633478-1216.jpg" },
|
||||
{ id: "4", name: "Cynthia Urbano", handle: "Recomendación PIMEC", testimonial: "Excelente servicio. Siempre buscando la mejor solución para el cliente.", imageSrc: "http://img.b2bpic.net/free-photo/studio-portrait-serious-bearded-male-dressed-suit_613910-5596.jpg" },
|
||||
{ id: "5", name: "Cliente Anónimo", handle: "Empresa", testimonial: "La profesionalidad con la que tratan cada tema fiscal es encomiable.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiley-woman_23-2149022644.jpg" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="blog" data-section="blog">
|
||||
<BlogCardThree
|
||||
title="Actualidad"
|
||||
description="Lo que necesitas saber este mes."
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
blogs={[
|
||||
{ id: "b1", category: "Fiscal", title: "Seguridad Social 2026", excerpt: "Cambios en la cotización para salarios altos.", imageSrc: "http://img.b2bpic.net/free-photo/visa-application-form-wooden-table-visa-processing-registration-flat-lay_169016-16624.jpg", authorName: "AGL", authorAvatar: "http://img.b2bpic.net/free-photo/3d-cartoon-style-character_23-2151034128.jpg", date: "2025-10" },
|
||||
{ id: "b2", category: "Normativa", title: "Facturación 2025", excerpt: "Nuevos plazos para el sistema de facturación.", imageSrc: "http://img.b2bpic.net/free-photo/stack-papers-tax-concept-illustration_53876-71434.jpg", authorName: "AGL", authorAvatar: "http://img.b2bpic.net/free-photo/3d-rendering-cartoon-business-men_23-2150797698.jpg", date: "2025-09" },
|
||||
{ id: "b3", category: "Fiscal", title: "Cierre 2025", excerpt: "Siete decisiones antes de finalizar diciembre.", imageSrc: "http://img.b2bpic.net/free-photo/table-with-finance-work-stuff-laptop-coffee-money-tablet-pen-papers_1268-17460.jpg", authorName: "AGL", authorAvatar: "http://img.b2bpic.net/free-photo/men-cartoon-characters-together_23-2150964453.jpg", date: "2025-08" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactText
|
||||
text="La primera consulta es gratuita. La tranquilidad que sigue, no tiene precio."
|
||||
background={{ variant: "plain" }}
|
||||
buttons={[{ text: "Reservar consulta", href: "#" }]}
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseReveal
|
||||
logoText="AGL"
|
||||
columns={[
|
||||
{ title: "Áreas", items: [{ label: "Fiscal", href: "/servicios" }, { label: "Laboral", href: "/servicios" }] },
|
||||
{ title: "Firma", items: [{ label: "La Firma", href: "/la-firma" }, { label: "Actualidad", href: "/blog" }] },
|
||||
{ title: "Contacto", items: [{ label: "Barcelona", href: "#" }] },
|
||||
{ title: "Legal", items: [{ label: "Privacidad", href: "#" }, { label: "Cookies", href: "#" }] }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user