File tree 2 files changed +11
-3
lines changed
2 files changed +11
-3
lines changed Original file line number Diff line number Diff line change
1
+ import ConstructTemplate from '../templates/ConstructPage' ;
2
+
3
+ const LoginPage = ( ) => {
4
+ return < ConstructTemplate /> ;
5
+ } ;
6
+
7
+ export default LoginPage ;
Original file line number Diff line number Diff line change 1
1
import React from 'react' ;
2
2
3
- import pageInConstruction from '../../assets/page-under-construction.png' ;
4
3
import Header from '../../components/Header' ;
4
+ import Footer from '../../components/Footer' ;
5
5
6
6
function ConstructPage ( ) {
7
7
return (
@@ -18,11 +18,12 @@ function ConstructPage() {
18
18
>
19
19
< img
20
20
style = { { height : '50vh' , maxHeight : '912px' } }
21
- src = { pageInConstruction }
22
- alt = ""
21
+ src = "/img/page-under-construction.png"
22
+ alt = "Página em construção "
23
23
/>
24
24
< h2 style = { { color : '#c4c4c4' } } > Pagina em Construção</ h2 >
25
25
</ div >
26
+ < Footer />
26
27
</ >
27
28
) ;
28
29
}
You can’t perform that action at this time.
0 commit comments