-
Notifications
You must be signed in to change notification settings - Fork 65
/
Copy pathindex.js
30 lines (27 loc) · 832 Bytes
/
index.js
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
import React from 'react';
import pageInConstruction from '../../assets/page-under-construction.png';
import Header from '../../components/Header';
function ConstructPage() {
return (
<>
<Header />
<div
style={{
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
flexDirection: 'column',
height: '80vh',
}}
>
<img
style={{ height: '50vh', maxHeight: '912px' }}
src={pageInConstruction}
alt=""
/>
<h2 style={{ color: '#c4c4c4' }}>Pagina em Construção</h2>
</div>
</>
);
}
export default ConstructPage;