rtetley commited on
Commit
8b23f6c
Β·
verified Β·
1 Parent(s): 340080f

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
- href: '#',
24
- imgUrl: '/inr_logo_rouge.png'
 
 
 
25
  },
26
  {
27
  alt: 'Logo CNRS',
28
- href: '#',
29
- imgUrl: '/LOGO_CNRS_BLEU.png'
 
 
 
30
  },
31
  {
32
  alt: 'Logo LNE',
33
- href: '#',
34
- imgUrl: '/logo-lne.svgz'
 
 
 
35
  },
36
  {
37
  alt: 'Logo DGE',
38
- href: '#',
39
- imgUrl: '/logo_DGE.png'
 
 
 
40
  },
41
  {
42
  alt: 'Logo huggingface',
43
- href: '#',
44
- imgUrl: '/hf-logo-with-title.svg'
 
 
 
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
  }}