Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
fix(footer): footer had no return type
Browse files
frontend/src/components/Footer/Footer.tsx
CHANGED
@@ -3,43 +3,43 @@ import {addFooterTranslations, Footer} from "@codegouvfr/react-dsfr/Footer";
|
|
3 |
// import { Box, Typography, Link } from "@mui/material";
|
4 |
|
5 |
const footer = () => {
|
6 |
-
<Footer
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
}
|
44 |
|
45 |
addFooterTranslations({
|
|
|
3 |
// import { Box, Typography, Link } from "@mui/material";
|
4 |
|
5 |
const footer = () => {
|
6 |
+
return <Footer
|
7 |
+
accessibility="fully compliant"
|
8 |
+
contentDescription="
|
9 |
+
L'évaluation des systèmes d'IA est un enjeu stratégique sur lequel la France s'est historiquement démarquée.
|
10 |
|
11 |
+
Ce classement, ou leaderboard, s'inspire directement de l'Open LLM Leaderboard et permet de comparer différents modèles d'IA génératifs à l'aide de jeux de données spécifiquement adaptés aux environnements et à la culture francophones.
|
12 |
+
"
|
13 |
+
partnersLogos={{
|
14 |
+
sub: [
|
15 |
+
{
|
16 |
+
alt: 'Logo Inria',
|
17 |
+
href: '#',
|
18 |
+
imgUrl: '/inr_logo_rouge.png'
|
19 |
+
},
|
20 |
+
{
|
21 |
+
alt: 'Logo CNRS',
|
22 |
+
href: '#',
|
23 |
+
imgUrl: '/LOGO_CNRS_BLEU.png'
|
24 |
+
},
|
25 |
+
{
|
26 |
+
alt: 'Logo LNE',
|
27 |
+
href: '#',
|
28 |
+
imgUrl: '/logo-lne.svgz'
|
29 |
+
},
|
30 |
+
{
|
31 |
+
alt: 'Logo DGE',
|
32 |
+
href: '#',
|
33 |
+
imgUrl: '/logo_DGE.png'
|
34 |
+
},
|
35 |
+
{
|
36 |
+
alt: 'Logo huggingface',
|
37 |
+
href: '#',
|
38 |
+
imgUrl: '/hf-logo-with-title.svg'
|
39 |
+
}
|
40 |
+
]
|
41 |
+
}}
|
42 |
+
/>
|
43 |
}
|
44 |
|
45 |
addFooterTranslations({
|