-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathnieuwsbrief.tsx
More file actions
36 lines (32 loc) · 1.09 KB
/
nieuwsbrief.tsx
File metadata and controls
36 lines (32 loc) · 1.09 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
import React from 'react';
import styled from 'styled-components';
import Layout from '../layouts/MainLayout/MainLayout';
import { Container, Row, Col } from '../lib/Grid';
import NewsletterSubscribe from '../containers/NewsletterSubscribe/NewsletterSubscribe';
const pageSettings = {
title: `Nieuwsbrief |
Blijf op de hoogte`,
description: `Blijf op de hoogte van onze nieuwste content en ontwikkelingen bij Bytecode`,
keywords: 'nieuwsbrief, bytecode',
};
const NieuwsbriefContainer = styled(Container)`
padding-top: 120px;
`;
const Nieuwsbrief: React.FC<Record<string, never>> = () => (
<Layout pageSettings={pageSettings}>
<NieuwsbriefContainer>
<Row>
<Col md={6}>
<img
src={require('../images/img/content/teamv2.png')}
alt="Team Bytecode"
/>
</Col>
<Col md={6}>
<NewsletterSubscribe />
</Col>
</Row>
</NieuwsbriefContainer>
</Layout>
);
export default Nieuwsbrief;