GCS serves organizations across seven distinct industry verticals, each represented by a branded card in the Sectores de Especialización section on the homepage. 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.
<Sectors /> component (components/sections/sectors.tsx) renders the first six cards in a three-column grid and the seventh card — Entidades Sin Ánimo de Lucro — centered below as a standalone row. All sector data, including the card’s border color, text color, and hover border, is declared in the sectors array in lib/site-data.ts. A dedicated route at /sectores-especializacion provides a full-page view of all sectors.
Sector Interface
The Seven Sectors
| Sector | Image path | Border color | Text color | Hover border |
|---|---|---|---|---|
| Industrial y Manufactura | /sectores/Industrial.png | #2a3a6e | #2a3a6e | #1C2F5C |
| Comercial y Retail | /sectores/Comercial.png | #007dc2 | #007DC2 | #0075B0 |
| Servicios | /sectores/Servicios.png | #abc42e | #abc42e | #8FAE22 |
| Educativo | /sectores/Educacion.png | #007dc2 | #007DC2 | #1B94CC |
| Financiero y Bursátil | /sectores/Financiero.png | #155c98 | #155c98 | #5D8097 |
| Solidario y Cooperativo | /sectores/Solidario.png | #2a3a6e | #2a3a6e | #1C2F5C |
| Entidades Sin Ánimo de Lucro | /sectores/Sin-Lucro.png | #abc42e | #abc42e | #8FAE22 |
Raw sectors Array
How the Sector Cards Are Rendered
The<Sectors /> component applies borderColor and textColor inline via the style prop, bypassing Tailwind’s purge mechanism for dynamic values. Card dimensions are fixed at 220 × 190 px with rounded-[24px] corners and a 2px solid border:
\n characters in sector.name are rendered as real line breaks because the whitespace-pre-line Tailwind class is applied to the <span>. The seventh card is excluded from the main grid grid-cols-3 loop (sectors.slice(0, 6)) and rendered separately in a centered flex row below.
Image Assets
Each sector has two sets of imagery in/public/:
/public/sectores/— Icon-style PNGs rendered inside the homepage cards (75 × 75 px display area,object-contain)./public/Sectores-especializacion/— Larger photographic or illustrative images used on the dedicated/sectores-especializacionpage.
imagePath in the data array.
Dedicated Sectors Page
The/sectores-especializacion route renders an expanded view of all seven sectors. The navigation entry for this page is:
app/sectores-especializacion/page.tsx.
Adding a New Sector
Add the sector object
Append a new
Sector entry to the sectors array in lib/site-data.ts with a name, image path, and three brand-consistent color hex values.Add the specialization image
Place the larger image in
/public/Sectores-especializacion/ if the sector will appear on the dedicated page.