File tree 3 files changed +7
-4
lines changed
3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,9 @@ const BlogPage = (): JSX.Element => (
23
23
layoutTitle = { PAGE . blog }
24
24
containerTitle = { SECTION . blog }
25
25
posts = { postsContent . posts }
26
+ description = "Here you will find all the blog posts explaining how to use the
27
+ libraries developed by Process Analytics, as well as those explaining
28
+ how they were developed using external technical tools, and more."
26
29
/>
27
30
) ;
28
31
Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ const NewsPage = (): JSX.Element => (
23
23
layoutTitle = { PAGE . news }
24
24
containerTitle = { SECTION . news }
25
25
posts = { newsContent . news }
26
+ description = ""
26
27
/>
27
28
) ;
28
29
Original file line number Diff line number Diff line change @@ -31,12 +31,14 @@ interface PageWithPostsProps {
31
31
layoutTitle : PAGE ;
32
32
containerTitle : SECTION ;
33
33
posts : PostDescription [ ] ;
34
+ description : string ;
34
35
}
35
36
36
37
export const PageWithPosts = ( {
37
38
layoutTitle,
38
39
containerTitle,
39
40
posts,
41
+ description,
40
42
} : PageWithPostsProps ) : JSX . Element => (
41
43
< Layout title = { layoutTitle } >
42
44
< PageHeader />
@@ -61,10 +63,7 @@ export const PageWithPosts = ({
61
63
style = { centerHorizontally }
62
64
>
63
65
< Text width = { [ 300 , 700 ] } key = "presentation" >
64
- { /*TODO move to content for a specific content for blog and news*/ }
65
- Here you will find all the blog posts explaining how to use the
66
- libraries developed by Process Analytics, as well as those explaining
67
- how they were developed using external technical tools, and more.
66
+ { description }
68
67
</ Text >
69
68
</ Heading >
70
69
< PostContainer posts = { posts } />
You can’t perform that action at this time.
0 commit comments