GCS organizes its consulting engagement model around six Centros Estratégicos — dedicated hubs that map each client interaction to a specific domain of expertise. On the website, these centers are rendered in theDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/gcsconsultores/gcs-website/llms.txt
Use this file to discover all available pages before exploring further.
<StrategicCenters /> section (components/sections/strategic-centers.tsx) as a six-column card grid, each card displaying a cover photograph, a short description, the center’s Lucide icon, and a directional arrow. All center data is declared once in lib/site-data.ts and consumed by the section component, the main navigation mega-menu, and any page that imports strategicCenters.
StrategicCenter Interface
The Six Strategic Centers
Recepción Estratégica
ID:
recepcionDescription: Lo orientamos antes de proponer cualquier solución.Icon: MessageSquareTextCover image: /Centros-estrategicos/recepcion.jpegNav href: /centros/recepcionThe entry point for every new client relationship. Before any proposal is made, GCS maps the organization’s context, goals, and constraints to ensure subsequent recommendations are precise and actionable.Crecimiento Estratégico
ID:
crecimientoDescription: Ruta comercial y operativa para escalar sin perder el control.Icon: TrendingUpCover image: /Centros-estrategicos/crecimiento.jpegNav href: /centros/crecimientoSupports organizations that are scaling revenue, expanding geographically, or restructuring their operating model. Deliverables include commercial roadmaps, process redesign, and productivity frameworks.Riesgo & Cumplimiento
ID:
riesgoDescription: Cerramos exposiciones normativas con metodología aprobada.Icon: ShieldAlertCover image: /Centros-estrategicos/cumplimiento.jpegNav href: /centros/riesgoCovers regulatory compliance (SARLAFT/SAGRILAFT, OEA, BASC, ISO standards), internal audit, and risk management frameworks. Methodology is aligned with COSO ERM and ISO 31000.Estrategia Ejecutiva
ID:
estrategiaDescription: Acompañamos decisiones que definen el rumbo del negocio.Icon: Settings2Cover image: /Centros-estrategicos/estrategia.jpegNav href: /centros/estrategiaProvides advisory services to boards and C-suite leaders on corporate governance, strategic planning, and organizational design. Engagements are calibrated to the client’s decision-making cycle.Innovación & Tecnología
ID:
innovacionDescription: IA y automatización donde realmente generan impacto.Icon: LightbulbCover image: /Centros-estrategicos/innovacion.jpegNav href: /centros/innovacionFocuses on digital transformation initiatives — custom software development, IT infrastructure, information security, and applied AI — scoped to deliver measurable operational value.Talento & Capacitación
ID:
talentoDescription: Capacidades para ejecutar, no solo para cumplir.Icon: GraduationCapCover image: /Centros-estrategicos/capacitacion.jpegNav href: /centros/talentoDesigns and delivers training programs, workshops, and certification paths that build the internal capabilities teams need to execute — not just satisfy compliance checklists.Raw strategicCenters Array
Navigation Mega-Menu Integration
TheCentros Estratégicos entry in navItems is the only nav item that carries both subItems and a viewAllHref. Each sub-item pairs the center’s display label with its dedicated route and a PNG logo used as an icon in the dropdown:
viewAllHref property is used by the nav component to render a “Ver todos los centros” call-to-action at the bottom of the dropdown, pointing visitors to the main centers listing page. The iconSrc paths reference static PNG logos stored in /public/.
Section Component Behavior
The<StrategicCenters /> component reads the strategicCenters array and renders each center as an <a> tag (not a Next.js <Link>) because the href currently points to static JPEG assets. The card structure is:
Cover image
Displayed in a
4/3 aspect-ratio container at the top of each card. The image source is center.href./centros.
Adding a New Strategic Center
To add a seventh center, append a new
StrategicCenter object to the strategicCenters array in lib/site-data.ts. Also add a matching SubItem entry to the subItems array of the Centros Estratégicos navItem, and place the corresponding logo PNG in /public/ and the cover JPEG in /public/Centros-estrategicos/. No JSX changes are needed.