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 Consultores Empresariales is a Bogotá-based corporate consulting firm whose website is a full-stack Next.js 15 application. This documentation covers the platform’s features, technical architecture, data model, API endpoints, and deployment configuration for developers building on or maintaining the codebase.

Introduction

Learn what GCS Consultores does, who this site is for, and how all the pieces fit together.

Quickstart

Clone the repo, configure environment variables, and run the site locally in minutes.

Solution Portfolio

Explore the six consulting solution areas exposed on the site and how they map to data.

Sally AI Assistant

How the Gemini-powered virtual assistant works and how to extend her personality.

Sally API Reference

POST /api/sally — request shape, streaming response, and error handling.

CRM Integration

Connect the lead capture form to HubSpot, Salesforce, Zoho, or any REST CRM.

Platform at a Glance

The GCS website is organized around three layers: content data (lib/site-data.ts), UI sections (components/sections/), and server-side logic (app/actions/ and app/api/).
1

Content is centralized

All business content — solutions, sectors, strategic centers, company info — lives in lib/site-data.ts. Edit this file to update any section without touching JSX.
2

Sections are autonomous components

Each page section (<Hero />, <Solutions />, <StrategicCenters />, etc.) is a standalone React component that reads from the central data file.
3

Sally handles AI conversations

The floating chat widget sends messages to /api/sally, which streams responses from Google Gemini 3 Flash via the Vercel AI Gateway.
4

Leads flow to your CRM

The “Orientación Estratégica” contact form validates data with Zod, then calls submitLead() — a Server Action that forwards the payload to any configured CRM endpoint.

Key Sections

Strategic Centers

Six consulting practice areas with dedicated branding and entry points.

Sector Specialization

Seven industry verticals each with dedicated color tokens and imagery.

GCS Insights

Articles, news sidebar, and multimedia content managed through data files.

Design System

Tailwind CSS v4 tokens, shadcn/ui components, and corporate color palette.

Site Data Model

Full reference for every exported type and constant in lib/site-data.ts.

Deployment

Vercel deployment, environment variables, and production checklist.

Build docs developers (and LLMs) love