// logos.jsx — Three proposals in the spirit of Ruta I (Sillar). // All routes share the same DNA: a single rounded block of stone, a single // carved opening, a single legible silhouette. They differ in what is carved. // // Ruta I·a Sillar — window cut into the upper-right // Ruta I·b Elemento — periodic-table cell. Te (Tellurium, from Latin // tellus = earth) carved into the face. // Ruta I·c Umbral — arched doorway carved into the bottom edge. const LOGO_ROUTES = [ { id: "sillar", label: "Sillar", short: "Ruta I·a", blurb: "Un bloque de piedra labrada con una ventana abierta hacia afuera. La marca se vuelve materia: una sola pieza, un solo recorte.", reading: "Piedra · ventana · cobijo", }, { id: "elemento", label: "Elemento", short: "Ruta I·b", blurb: "La marca como celda de tabla periódica. Te — telurio, del latín tellus, «tierra» — inscribe la promotora en el lenguaje de los materiales fundamentales. La esfera con horizonte declara la pertenencia a la tierra.", reading: "Materia · horizonte · nombre", }, { id: "umbral", label: "Umbral", short: "Ruta I·c", blurb: "El mismo sillar, abierto por abajo. Un arco de piedra que enmarca la entrada: la marca como puerta, como invitación a pasar.", reading: "Arco · puerta · acceso", }, ]; function LogoMark({ route = "sillar", size = 60, color = "var(--verde)", title }) { const props = { width: size, height: size, viewBox: "0 0 60 60", role: "img", "aria-label": title || ("Grupo Térreo · " + route), style: { display: "block" }, }; if (route === "elemento") { // Periodic-table cell: outlined square, "esfera" symbol top-left // (a half-filled planet with horizon line — terra/gravedad), symbol big // and serif in the centre, brand name set in mono at the foot. // Te = Tellurium. Latin tellus, "earth". return ( {/* construction symbol — esfera (planet + horizon, lower half filled) */} {/* symbol */} Te {/* element name */} TÉRREO ); } if (route === "umbral") { // Rounded block with an arched doorway carved out of the bottom edge. // Single continuous outline — no fill-rule trickery. return ( ); } // default: sillar — rounded block with a window cut out of the upper-right. // The first Ruta I proposal, kept as the anchor of the family. return ( ); } // Full lockup: mark + GRUPO TÉRREO wordmark function LogoLockup({ route = "sillar", color = "var(--verde)", textColor = "var(--carbon)", scale = 1, layout = "horizontal" }) { const size = 76 * scale; if (layout === "stack") { return (
GRUPO
TÉRREO
); } return (
GRUPO
TÉRREO
); } Object.assign(window, { LogoMark, LogoLockup, LOGO_ROUTES });