-
-
Notifications
You must be signed in to change notification settings - Fork 229
/
Copy pathSiteLogos.tsx
50 lines (50 loc) · 1.74 KB
/
SiteLogos.tsx
1
2
3
4
5
6
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
46
47
48
49
50
export const SiteLogos = ({ baseUrl }: { baseUrl: string }) => {
return (
<div className="site-logos">
<div className="logo-owid">
<a href="/">
Our World
<br /> in Data
</a>
</div>
<div className="logos-wrapper">
<a
href="https://www.oxfordmartin.ox.ac.uk/global-development"
className="oxford-logo"
>
<picture>
<source
type="image/avif"
srcSet={`${baseUrl}/oms-logo.avif`}
/>
<img
src={`${baseUrl}/oms-logo.png`}
alt="Oxford Martin School logo"
loading="lazy"
width={275}
height={139}
/>
</picture>
</a>
<a
href="https://global-change-data-lab.org/"
className="gcdl-logo"
>
<picture>
<source
type="image/webp"
srcSet={`${baseUrl}/gcdl-logo.webp`}
/>
<img
src={`${baseUrl}/gcdl-logo.png`}
alt="Global Change Data Lab logo"
loading="lazy"
width={106}
height={127}
/>
</picture>
</a>
</div>
</div>
)
}