Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
fix: add urls to partner links
Browse files
frontend/src/components/Footer/Footer.tsx
CHANGED
@@ -20,28 +20,43 @@ const footer = () => {
|
|
20 |
sub: [
|
21 |
{
|
22 |
alt: 'Logo Inria',
|
23 |
-
|
24 |
-
|
|
|
|
|
|
|
25 |
},
|
26 |
{
|
27 |
alt: 'Logo CNRS',
|
28 |
-
|
29 |
-
|
|
|
|
|
|
|
30 |
},
|
31 |
{
|
32 |
alt: 'Logo LNE',
|
33 |
-
|
34 |
-
|
|
|
|
|
|
|
35 |
},
|
36 |
{
|
37 |
alt: 'Logo DGE',
|
38 |
-
|
39 |
-
|
|
|
|
|
|
|
40 |
},
|
41 |
{
|
42 |
alt: 'Logo huggingface',
|
43 |
-
|
44 |
-
|
|
|
|
|
|
|
45 |
}
|
46 |
]
|
47 |
}}
|
|
|
20 |
sub: [
|
21 |
{
|
22 |
alt: 'Logo Inria',
|
23 |
+
imgUrl: '/inr_logo_rouge.png',
|
24 |
+
linkProps: {
|
25 |
+
href: "https://inria.fr/fr",
|
26 |
+
title: "Lien vers le site Inria"
|
27 |
+
}
|
28 |
},
|
29 |
{
|
30 |
alt: 'Logo CNRS',
|
31 |
+
imgUrl: '/LOGO_CNRS_BLEU.png',
|
32 |
+
linkProps: {
|
33 |
+
href: "https://www.cnrs.fr/fr",
|
34 |
+
title: "Lien vers le site CNRS"
|
35 |
+
}
|
36 |
},
|
37 |
{
|
38 |
alt: 'Logo LNE',
|
39 |
+
imgUrl: '/logo-lne.svgz',
|
40 |
+
linkProps: {
|
41 |
+
href: "https://www.lne.fr/fr",
|
42 |
+
title: "Lien vers le site LNE"
|
43 |
+
}
|
44 |
},
|
45 |
{
|
46 |
alt: 'Logo DGE',
|
47 |
+
imgUrl: '/logo_DGE.png',
|
48 |
+
linkProps: {
|
49 |
+
href: "https://www.entreprises.gouv.fr/",
|
50 |
+
title: "Lien vers le site DGE"
|
51 |
+
}
|
52 |
},
|
53 |
{
|
54 |
alt: 'Logo huggingface',
|
55 |
+
imgUrl: '/hf-logo-with-title.svg',
|
56 |
+
linkProps: {
|
57 |
+
href: "https://huggingface.co/",
|
58 |
+
title: "Lien vers le site huggingface"
|
59 |
+
}
|
60 |
}
|
61 |
]
|
62 |
}}
|