From 56fae94b1e3b2e60943b2544bfbc1173121588bc Mon Sep 17 00:00:00 2001 From: Irozuku Date: Mon, 25 May 2026 17:23:39 -0400 Subject: [PATCH 1/2] refactor(ui): update institutional affiliation in footer Update the footer text and copyright information to replace CENIA with Universidad de Chile in both Spanish and English translations. --- components/footer.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/components/footer.tsx b/components/footer.tsx index fe56d1b..a5a103b 100644 --- a/components/footer.tsx +++ b/components/footer.tsx @@ -38,8 +38,8 @@ export function Footer() {

{lang === "es" - ? "Proyecto open-source desarrollado en CENIA, Chile. Licencia MIT. Visual ML Full Open · Full Extensible." - : "Open-source project developed at CENIA, Chile. MIT licensed. Visual ML, Full Open · Full Extensible."} + ? "Proyecto open-source desarrollado en la Universidad de Chile. Licencia MIT. Visual ML Full Open · Full Extensible." + : "Open-source project developed at Universidad de Chile. MIT licensed. Visual ML, Full Open · Full Extensible."}

@@ -130,7 +130,7 @@ export function Footer() {
© 2026 DashAI MIT License - CENIA · Chile + Universidad de Chile · Chile
From 21ee46d30485cc3a66455793750102bb9c7b5e76 Mon Sep 17 00:00:00 2001 From: Irozuku Date: Mon, 25 May 2026 17:23:51 -0400 Subject: [PATCH 2/2] fix(ui): update collaborators and grid layout in supported-by section Reorganize the collaborators list by adjusting roles and metadata for UChile and CENIA, adding Unholster, and updating the grid column count from 5 to 4 to accommodate the new structure. Also implements localized metadata for all entries. --- components/supported-by-section.tsx | 37 ++++++++++++----------------- 1 file changed, 15 insertions(+), 22 deletions(-) diff --git a/components/supported-by-section.tsx b/components/supported-by-section.tsx index 566f59c..df5d4b0 100644 --- a/components/supported-by-section.tsx +++ b/components/supported-by-section.tsx @@ -11,39 +11,32 @@ const ON_LIGHT_FAINT = "#6C685F" const BRAND_ON_LIGHT = "#1E63D8" const COLLABS = [ - { - acro: "CENIA", - name: { es: "Centro Nacional de Inteligencia Artificial", en: "National Center for Artificial Intelligence" }, - role: { es: "Institución líder", en: "Lead institution" }, - meta: "Chile", - url: "https://www.cenia.cl/", - }, { acro: "UCHILE", name: { es: "Universidad de Chile · DCC, FCFM", en: "University of Chile · DCC, FCFM" }, - role: { es: "Investigación y desarrollo", en: "Research & development" }, - meta: "DCC", + role: { es: "Institución líder", en: "Lead institution" }, + meta: { es: "Academia", en: "Academic" }, url: "https://dcc.uchile.cl/", }, { - acro: "USM", - name: { es: "Universidad Técnica Federico Santa María", en: "Federico Santa María Technical University" }, - role: { es: "Investigación y desarrollo", en: "Research & development" }, - meta: "Chile", - url: "https://www.usm.cl/", + acro: "CENIA", + name: { es: "Centro Nacional de Inteligencia Artificial", en: "National Center for Artificial Intelligence" }, + role: { es: "Colaborador", en: "Collaborator" }, + meta: { es: "Investigación", en: "Research" }, + url: "https://www.cenia.cl/", }, { - acro: "IMFD", - name: { es: "Instituto Milenio Fundamentos de los Datos", en: "Millennium Institute for Foundational Research on Data" }, - role: { es: "Colaboración científica", en: "Scientific collaboration" }, - meta: "ICN17_002", - url: "https://www.imfd.cl/", + acro: "Unholster", + name: { es: "Unholster", en: "Unholster" }, + role: { es: "Colaborador", en: "Collaborator" }, + meta: { es: "Industria", en: "Industry" }, + url: "https://www.unholster.com/", }, { acro: "ANID", name: { es: "Agencia Nacional de Investigación y Desarrollo", en: "National Agency for Research and Development" }, role: { es: "Financiamiento público", en: "Public funding" }, - meta: "Fondef IDEA", + meta: { es: "Gobierno", en: "Government" }, url: "https://anid.cl/", }, ] @@ -85,7 +78,7 @@ export function SupportedBySection() { {/* Grid */}
{lang === "es" ? c.role.es : c.role.en} · - {c.meta} + {lang === "es" ? c.meta.es : c.meta.en}
))}