Skip to main content

Documentation 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.

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 the <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

// lib/site-data.ts

export interface StrategicCenter {
  id: string          // URL-safe slug (e.g. 'recepcion', 'innovacion')
  title: string       // Display name shown on the card header
  description: string // One-line value proposition
  icon: LucideIcon    // Lucide icon used at the bottom of each card
  href: string        // Path to the center's cover image (used as <img src>)
}

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

// lib/site-data.ts

import {
  MessageSquareText,
  TrendingUp,
  ShieldAlert,
  Settings2,
  Lightbulb,
  GraduationCap,
} from 'lucide-react'

export const strategicCenters: StrategicCenter[] = [
  {
    id: 'recepcion',
    title: 'Recepción Estratégica',
    description: 'Lo orientamos antes de proponer cualquier solución.',
    icon: MessageSquareText,
    href: '/Centros-estrategicos/recepcion.jpeg',
  },
  {
    id: 'crecimiento',
    title: 'Crecimiento Estratégico',
    description: 'Ruta comercial y operativa para escalar sin perder el control.',
    icon: TrendingUp,
    href: '/Centros-estrategicos/crecimiento.jpeg',
  },
  {
    id: 'riesgo',
    title: 'Riesgo & Cumplimiento',
    description: 'Cerramos exposiciones normativas con metodología aprobada.',
    icon: ShieldAlert,
    href: '/Centros-estrategicos/cumplimiento.jpeg',
  },
  {
    id: 'estrategia',
    title: 'Estrategia Ejecutiva',
    description: 'Acompañamos decisiones que definen el rumbo del negocio.',
    icon: Settings2,
    href: '/Centros-estrategicos/estrategia.jpeg',
  },
  {
    id: 'innovacion',
    title: 'Innovación & Tecnología',
    description: 'IA y automatización donde realmente generan impacto.',
    icon: Lightbulb,
    href: '/Centros-estrategicos/innovacion.jpeg',
  },
  {
    id: 'talento',
    title: 'Talento & Capacitación',
    description: 'Capacidades para ejecutar, no solo para cumplir.',
    icon: GraduationCap,
    href: '/Centros-estrategicos/capacitacion.jpeg',
  },
]

The Centros 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:
// lib/site-data.ts

{
  label: 'Centros Estratégicos',
  href: '#centros',          // In-page anchor for the homepage section
  viewAllHref: '/',          // "View all centers" link in the mega-menu footer
  subItems: [
    { label: 'Recepción Estratégica',  href: '/centros/recepcion',   iconSrc: '/logo-recepcion.png'   },
    { label: 'Crecimiento Estratégico', href: '/centros/crecimiento', iconSrc: '/logo-crecimiento.png' },
    { label: 'Riesgo & Cumplimiento',  href: '/centros/riesgo',      iconSrc: '/logo-riesgo.png'      },
    { label: 'Estrategia Ejecutiva',   href: '/centros/estrategia',  iconSrc: '/logo-estrategia.png'  },
    { label: 'Innovación & Tecnología', href: '/centros/innovacion', iconSrc: '/logo-innovacion.png'  },
    { label: 'Talento & Capacitación', href: '/centros/talento',     iconSrc: '/logo-talento.png'     },
  ],
}
The 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:
1

Cover image

Displayed in a 4/3 aspect-ratio container at the top of each card. The image source is center.href.
2

Title and description

center.title in brand navy, center.description in slate-600 below it.
3

Icon and arrow

center.icon (Lucide) renders at 40% opacity in the card footer, alongside an ArrowRight that translates on hover. Clicking the card also fires trackEvent('center_opened', { id: center.id }).
A primary CTA button — “Explorar todos los centros” — is centered below the grid and links to /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.

Build docs developers (and LLMs) love