Update src/app/nosotros/page.tsx

This commit is contained in:
2026-04-12 23:32:36 +00:00
parent c29cba951e
commit c4bd7b0343

View File

@@ -28,21 +28,13 @@ export default function LandingPage() {
<NavbarLayoutFloatingOverlay
navItems={[
{
name: "Inicio",
id: "/",
},
name: "Inicio", id: "/"},
{
name: "Productos",
id: "/productos",
},
name: "Productos", id: "/productos"},
{
name: "Nosotros",
id: "/nosotros",
},
name: "Nosotros", id: "/nosotros"},
{
name: "Contacto",
id: "/contacto",
},
name: "Contacto", id: "/contacto"},
]}
brandName="AGROPEC"
/>
@@ -63,17 +55,12 @@ export default function LandingPage() {
title="El corazón de nuestra empresa"
tag="Nuestro Equipo"
memberVariant="card"
membersAnimation="slide-up"
members={[
{
id: "t1",
name: "Ing. Roberto Zavala",
imageSrc: "http://img.b2bpic.net/free-photo/middle-aged-bearded-caucasian-botanist-biologist-wearing-panama-hat_273609-6419.jpg",
},
id: "t1", name: "Ing. Roberto Zavala", imageSrc: "http://img.b2bpic.net/free-photo/middle-aged-bearded-caucasian-botanist-biologist-wearing-panama-hat_273609-6419.jpg"},
{
id: "t2",
name: "Lic. Elena Martínez",
imageSrc: "http://img.b2bpic.net/free-photo/surprised-young-female-gardener-uniform-wearing-gardening-hat-pretends-hold-camera_141793-116179.jpg",
},
id: "t2", name: "Lic. Elena Martínez", imageSrc: "http://img.b2bpic.net/free-photo/surprised-young-female-gardener-uniform-wearing-gardening-hat-pretends-hold-camera_141793-116179.jpg"},
]}
/>
</div>
@@ -87,17 +74,11 @@ export default function LandingPage() {
description="Cada cifra cuenta una historia de éxito compartido con el agro hondureño."
metrics={[
{
id: "h1",
icon: History,
title: "Años de trayectoria",
value: "53",
},
id: "h1", icon: History,
title: "Años de trayectoria", value: "53"},
{
id: "h2",
icon: Truck,
title: "Proyectos ejecutados",
value: "5,000+",
},
id: "h2", icon: Truck,
title: "Proyectos ejecutados", value: "5,000+"},
]}
/>
</div>
@@ -107,34 +88,23 @@ export default function LandingPage() {
logoText="AGROPEC"
columns={[
{
title: "Empresa",
items: [
title: "Empresa", items: [
{
label: "Nosotros",
href: "/nosotros",
},
label: "Nosotros", href: "/nosotros"},
{
label: "Contacto",
href: "/contacto",
},
label: "Contacto", href: "/contacto"},
],
},
{
title: "Productos",
items: [
title: "Productos", items: [
{
label: "Catálogo",
href: "/productos",
},
label: "Catálogo", href: "/productos"},
],
},
{
title: "Contacto",
items: [
title: "Contacto", items: [
{
label: "WhatsApp",
href: "https://wa.me/50499919494",
},
label: "WhatsApp", href: "https://wa.me/50499919494"},
],
},
]}