-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathFooter.tsx
More file actions
56 lines (52 loc) · 1.7 KB
/
Footer.tsx
File metadata and controls
56 lines (52 loc) · 1.7 KB
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
51
52
53
54
55
56
import React from 'react';
import styles from './Footer.module.scss';
import { BodyLong, Heading, Link } from '@pxweb2/pxweb2-ui';
import { useTranslation } from 'react-i18next';
export const Footer: React.FC = () => {
const { t } = useTranslation();
return (
<div className={styles.footer}>
<div className={styles.logos}>
<img alt="SCB logo" src="/images/scb-logo.svg" />{' '}
<img alt="SSB logo" src="/images/ssb-logo.svg" />
</div>
<div className={styles.description}>
<BodyLong>
{t('presentation_page.footer.description')}{' '}
<Link
inline={true}
target="_blank"
href="https://pxtools.github.io/PxWeb2/"
>
{t('presentation_page.footer.descriptionLink')}
</Link>
.
</BodyLong>
</div>
<div className={styles.contact}>
<Heading size="xsmall" level="3">
{t('presentation_page.footer.contact')}
</Heading>
<BodyLong>
{t('presentation_page.footer.projectLeader')}: Kristin Glomsås,{' '}
<Link inline={true} href="mailto:krg@ssb.no">
krg@ssb.no
</Link>
</BodyLong>
<div className={styles.contactCopyrightWrapper}>
<div>
<BodyLong>
{t('presentation_page.footer.scrumMaster')}: Åsa Arrhén,{' '}
<Link inline={true} href="mailto:asa.arrhen@scb.se">
asa.arrhen@scb.se
</Link>
</BodyLong>
</div>
<div className={styles.copyright}>
<BodyLong>{t('presentation_page.footer.copyright')}</BodyLong>
</div>
</div>
</div>
</div>
);
};