/* eslint-disable react/prop-types */ /** * LogoWall · Sección 9 del Home · JUNTO A QUIENES LO HEMOS HECHO. * Brief 1 §3.1 Sección 9 + §4 (referido). * * - Tabs horizontales sticky de categoría * - 3 filas de marquee infinito, velocidades alternadas * - Logos tratados monocromáticamente en navy oscuro (placeholders * con wordmarks genéricos, el cliente reemplaza con SVGs reales) * - Footer: +1,720 organizaciones más a lo largo de 18 años. */ const { useState: uS_LW } = React; const CATEGORIES_LW = ['Todos', 'Desarrolladores', 'Capital', 'Retail', 'Industrial', 'Hotelería', 'Educación', 'Salud', 'Gobierno']; /* Placeholders de logos: wordmarks genéricos en monocromo navy. El cliente sustituye cada uno por el SVG real del logo del cliente. Categorías por logo para que los tabs filtren. Campo opcional `logo`: ruta a SVG real desde `home/`. Si está presente, el LogoCell renderiza la imagen SVG en lugar del wordmark tipográfico. Cuando no hay logo SVG, cae al texto formateado (serif/sans/mono). */ const LOGOS = [ // Desarrolladores { name: 'GRUPO GIM', cat: 'Desarrolladores', style: 'serif' }, { name: 'ASTRA', cat: 'Desarrolladores', style: 'sans' }, { name: 'GRUPO GENTOR', cat: 'Desarrolladores', style: 'sans' }, { name: 'ARTHA CAPITAL', cat: 'Capital', style: 'serif' }, { name: 'ONE DEVELOPMENT', cat: 'Desarrolladores', style: 'mono' }, { name: 'CAPITAL NATURAL', cat: 'Capital', style: 'serif' }, { name: 'GM CAPITAL', cat: 'Capital', style: 'sans' }, { name: 'LANDO', cat: 'Desarrolladores', style: 'sans' }, // Capital { name: 'FIBRA UNO', cat: 'Capital', style: 'mono' }, { name: 'PROMECAP', cat: 'Capital', style: 'sans' }, { name: 'PLANIGRUPO', cat: 'Capital', style: 'serif' }, { name: 'WALTON STREET', cat: 'Capital', style: 'serif' }, // Retail { name: 'CHEDRAUI', cat: 'Retail', style: 'sans', logo: 'assets/logos-clientes/chedraui.svg' }, { name: 'SORIANA', cat: 'Retail', style: 'sans', logo: 'assets/logos-clientes/soriana.svg' }, { name: 'CINÉPOLIS', cat: 'Retail', style: 'sans' }, { name: 'LIVERPOOL', cat: 'Retail', style: 'serif' }, { name: 'PALACIO DE HIERRO', cat: 'Retail', style: 'serif' }, // Industrial { name: 'FORD', cat: 'Industrial', style: 'sans', logo: 'assets/logos-clientes/ford.svg' }, { name: 'NEMAK', cat: 'Industrial', style: 'mono' }, { name: 'KATCON', cat: 'Industrial', style: 'sans' }, { name: 'METALSA', cat: 'Industrial', style: 'mono' }, // Hotelería { name: 'GRUPO POSADAS', cat: 'Hotelería', style: 'serif' }, { name: 'CITY EXPRESS', cat: 'Hotelería', style: 'sans' }, { name: 'NH HOTELES', cat: 'Hotelería', style: 'mono' }, // Educación { name: 'TEC DE MONTERREY', cat: 'Educación', style: 'serif' }, { name: 'UDEM', cat: 'Educación', style: 'mono' }, { name: 'UANL', cat: 'Educación', style: 'serif' }, // Salud { name: 'HOSPITAL ZAMBRANO', cat: 'Salud', style: 'serif' }, { name: 'CHRISTUS MUGUERZA', cat: 'Salud', style: 'sans' }, { name: 'OCA HOSPITAL', cat: 'Salud', style: 'sans' }, // Gobierno { name: 'GOBIERNO NL', cat: 'Gobierno', style: 'serif' }, { name: 'GOBIERNO CDMX', cat: 'Gobierno', style: 'serif' }, { name: 'MONTERREY', cat: 'Gobierno', style: 'sans' }, { name: 'SAN PEDRO', cat: 'Gobierno', style: 'sans' }, ]; const STYLE_FONT = { serif: { fontFamily: '"Georgia", serif', fontWeight: 700, letterSpacing: '0.04em' }, sans: { fontFamily: 'var(--font-sans)', fontWeight: 800, letterSpacing: '0.04em' }, mono: { fontFamily: 'ui-monospace, Menlo, Consolas, monospace', fontWeight: 700, letterSpacing: '0.18em' }, }; /* Path resolver — LogoWall solo se usa en Home, así que asumimos ruta relativa desde home/. Si en el futuro se reusa el componente desde otra página, este resolver lo adapta. */ function resolveLogoUrl(rel) { if (!rel) return null; if (rel.startsWith('/') || rel.startsWith('http')) return rel; if (window.location.pathname.includes('/home/')) return rel; return `../home/${rel}`; } function LogoCell({ logo, dim }) { const url = resolveLogoUrl(logo.logo); return (
+180 organizaciones nos han contratado para originar sus negocios inmobiliarios. Estas son algunas.