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 maintains five strategic alliances that expand the firm’s capabilities across quality management, international auditing, enterprise development, occupational safety, and professional registration. These alliances are rendered in the Alliances section of the Sobre Nosotros page — each partner’s logo displayed on a full-bleed background image to reinforce the institutional weight of the network.

Alliance Partners

gestion-calidad

ITICCOL

Estándar internacional de gestión de calidad. The ITICCOL alliance backs GCS’s quality management practice with internationally recognized standards and certification support.
auditool

Auditool

Red internacional especializada en auditoría y aseguramiento. Auditool is a specialized international network for auditing and assurance, deepening the technical bench available to GCS clients.
ccb

CCB

Participación en espacios de fortalecimiento empresarial. The CCB alliance opens GCS’s participation in Bogotá’s leading business development and entrepreneurial strengthening programs.
sds

SDS

Licencia SST. This alliance covers occupational health and safety (Seguridad y Salud en el Trabajo) licensing, enabling GCS to deliver compliant SST solutions to client organizations.
jcc

JCC

Registro. The JCC alliance provides formal registry credentials that support GCS’s standing in regulated professional engagements.

TypeScript Interface

The Alliance interface and the alliances array are defined in a single data file consumed by the AllianceGrid component:
components/sections/Alliances/alliance-data.ts
export interface Alliance {
  id: string
  logo: string
  title: string
  description: string
}

export const alliances: Alliance[] = [
  {
    id: 'iticcol',
    logo: '/Alianzas/gestion-calidad.png',
    title: 'ITICCOL',
    description: 'Estándar internacional de gestión de calidad',
  },
  {
    id: 'auditool',
    logo: '/Alianzas/auditool.png',
    title: 'Auditool',
    description: 'Red internacional especializada en auditoría y aseguramiento',
  },
  {
    id: 'ccb',
    logo: '/Alianzas/ccb.png',
    title: 'CCB',
    description: 'Participación en espacios de fortalecimiento empresarial',
  },
  {
    id: 'sst',
    logo: '/Alianzas/sds.png',
    title: 'SDS',
    description: 'Licencia SST',
  },
  {
    id: 'jcc',
    logo: '/Alianzas/jcc.png',
    title: 'JCC',
    description: 'Registro',
  },
]

Component Structure

The Alliances section is composed of three files:
FileRole
alliances.tsxSection shell — full-bleed background image, centering container
allianceHeading.tsxSection title and subtitle
allianceGrid.tsxIterates over alliances array and renders each logo
To add a new alliance, append a new object to the alliances array in components/sections/Alliances/alliance-data.ts. Give it a unique id, place the logo image under public/Alianzas/, and set the logo field to the corresponding /Alianzas/<filename> path. The AllianceGrid component iterates over the array automatically — no JSX changes are required.

Build docs developers (and LLMs) love