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
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}
))}