1 import React from 'react';
2 import { Container } from 'react-bootstrap';
3 import { Helmet } from 'react-helmet';
4 import { useTranslation } from 'react-i18next';
6 import Buttons from '../map/Buttons';
7 import List from '../map/List';
8 import OpenSeadragon from '../map/OpenSeadragon';
9 import Pins from '../map/Pins';
12 const container = React.useRef();
13 const { t } = useTranslation();
15 return <Container fluid>
17 <title>{t('map.heading')}</title>
18 <meta name="description" content={t('map.description')} />
20 <OpenSeadragon ref={container}>
21 <div className="d-flex align-items-center justify-content-between">
22 <h1>{t('map.heading')}</h1>
25 <div ref={container} style={{ height: '80vh' }} />