File tree 1 file changed +22
-1
lines changed
1 file changed +22
-1
lines changed Original file line number Diff line number Diff line change @@ -19,9 +19,13 @@ import PageHeader from '../theme/components/PageHeader';
19
19
import Footer from '../theme/components/Footer' ;
20
20
import Section from '../theme/components/Section' ;
21
21
import { PAGE , SECTION } from '../theme/utils/constants' ;
22
- import { Heading } from 'rebass/styled-components' ;
22
+ import { Heading , Text } from 'rebass/styled-components' ;
23
23
import Triangle from '../theme/components/Triangle' ;
24
24
import { PostContainer } from '../theme/sections/Blog' ;
25
+ // import { Fade } from 'react-awesome-reveal';
26
+
27
+ // TODO duplicated from Landing.tsx
28
+ const centerHorizontally = { marginRight : 'auto' , marginLeft : 'auto' } ;
25
29
26
30
const BlogPage = ( ) : JSX . Element => (
27
31
< Layout title = { PAGE . blog } >
@@ -37,6 +41,23 @@ const BlogPage = (): JSX.Element => (
37
41
>
38
42
{ SECTION . blog }
39
43
</ Heading >
44
+ { /*TODO manage responsiveness (3 media instead of just 2)*/ }
45
+ < Heading
46
+ as = "h2"
47
+ color = "primary"
48
+ fontSize = { [ 2 , 4 ] }
49
+ mb = { [ 3 , 5 ] }
50
+ textAlign = "center"
51
+ style = { centerHorizontally }
52
+ >
53
+ < Text width = { [ 300 , 700 ] } key = "presentation" >
54
+ { /*TODO move to content */ }
55
+ Here you will find all the blog posts written about the Process
56
+ Analytics project. They are about how to use the libraries and tools
57
+ developed by the project, how we use some tools or external technical
58
+ components, ...
59
+ </ Text >
60
+ </ Heading >
40
61
< PostContainer />
41
62
</ Section . Container >
42
63
< Footer />
You can’t perform that action at this time.
0 commit comments