aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/pages/jobs/benefits.tsx
blob: fa4edb2404c599907ccdb79eda7208b727afc051 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import * as React from 'react';

import { FilledImage } from 'ts/pages/jobs/filled_image';

export const Benefits = () => (
    <div className="flex" style={{ height: 937 }}>
        <div style={{ width: '43%', height: '100%' }}>
            <div className="flex" style={{ height: '67%' }}>
                <FilledImage src="/images/jobs/location1.png" />
            </div>
            <div className="clearfix" style={{ height: '33%' }}>
                <div className="col lg-col-6 md-col-6 col-12" style={{ height: '100%' }}>
                    <FilledImage src="/images/jobs/location2.png" />
                </div>
                <div className="col lg-col-6 md-col-6 col-12" style={{ height: '100%' }}>
                    <FilledImage src="/images/jobs/location3.png" />
                </div>
            </div>
        </div>
        <div style={{ width: '57%', height: '100%' }} />
    </div>
);