Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions components/footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ export function Footer() {
</div>
<p className="text-sm text-muted-foreground leading-[1.55] max-w-[38ch]">
{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."}
</p>
</div>

Expand Down Expand Up @@ -130,7 +130,7 @@ export function Footer() {
<div className="flex flex-wrap gap-x-[18px] gap-y-1">
<span>© 2026 DashAI</span>
<span>MIT License</span>
<span>CENIA · Chile</span>
<span>Universidad de Chile · Chile</span>
</div>
<div className="flex gap-5">
<a href={siteConfig.github.url} target="_blank" rel="noopener" className="hover:text-[#A7C7FF] transition-colors">
Expand Down
37 changes: 15 additions & 22 deletions components/supported-by-section.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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/",
},
]
Expand Down Expand Up @@ -85,7 +78,7 @@ export function SupportedBySection() {

{/* Grid */}
<div
className="grid grid-cols-1 lg:grid-cols-2 xl:grid-cols-5"
className="grid grid-cols-1 lg:grid-cols-2 xl:grid-cols-4"
style={{
gap: "1px",
background: PAPER_LINE,
Expand Down Expand Up @@ -118,7 +111,7 @@ export function SupportedBySection() {
>
{lang === "es" ? c.role.es : c.role.en}
<span style={{ color: BRAND_ON_LIGHT, padding: "0 .3em" }}>·</span>
{c.meta}
{lang === "es" ? c.meta.es : c.meta.en}
</div>
</a>
))}
Expand Down
Loading