-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCases.tsx
More file actions
61 lines (58 loc) · 1.87 KB
/
Cases.tsx
File metadata and controls
61 lines (58 loc) · 1.87 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
57
58
59
60
61
import React from 'react';
import TextBlock from '../TextBlock/TextBlock';
import {
Left,
Right,
LeftInner,
StyledRow,
CenteredRow,
} from './Cases.components';
import Button from '../../components/Button/Button';
const dearlyImg = require('../../images/img/cases/dearly/home.png');
const airchipImg = require('../../images/img/cases/airchip/airchip.png');
const Cases: React.FC = () => (
<div>
<StyledRow>
<Left>
<LeftInner>
<TextBlock
subtitle="Dearly"
headingType="h3"
title="Ondersteuning bij rouwverwerking"
>
Een nieuwe mobiele rouwapp voor persoonlijke
ondersteuning en maatschappelijke ontwikkeling
</TextBlock>
<Button href="/case/dearly">Bekijk case</Button>
</LeftInner>
</Left>
<Right>
<img src={dearlyImg} alt="" />
</Right>
</StyledRow>
<StyledRow>
<Left>
<LeftInner>
<TextBlock
subtitle="Airchip"
headingType="h3"
title="Barman in je broekzak"
>
Nooit meer in de rij op een festival of evenement:
bestel en betaal met Airchip.
</TextBlock>
<Button href="/case/airchip">Bekijk case</Button>
</LeftInner>
</Left>
<Right>
<img src={airchipImg} alt="" />
</Right>
</StyledRow>
<CenteredRow>
<Button wide href="/cases">
Bekijk meer cases
</Button>
</CenteredRow>
</div>
);
export default Cases;