File tree Expand file tree Collapse file tree 3 files changed +32
-0
lines changed Expand file tree Collapse file tree 3 files changed +32
-0
lines changed Original file line number Diff line number Diff line change
1
+ import React from "react" ;
2
+ import * as styles from "./styles.module.css" ;
3
+
4
+ const Divider = ( ) => (
5
+ < div className = { styles . divider } >
6
+ < div className = { [ styles . dividerLine , styles . light ] . join ( ' ' ) } > </ div >
7
+ </ div >
8
+ )
9
+
10
+ export default Divider ;
Original file line number Diff line number Diff line change
1
+ .divider {
2
+ margin-top : 32px ;
3
+ padding : 8px 0 ;
4
+ width : 100% ;
5
+ }
6
+
7
+ .dividerLine {
8
+ width : 80% ;
9
+ margin : 0 auto;
10
+ height : 1px ;
11
+ }
12
+
13
+ .dark {
14
+ background : # 4f5a7d ;
15
+ }
16
+
17
+ .light {
18
+ background : # b2bad1 ;
19
+ }
Original file line number Diff line number Diff line change @@ -8,15 +8,18 @@ import MainFeatures from "../components/MainFeatures"
8
8
import AboutTelenor from "../components/AboutTelenor"
9
9
import Seo from "../components/seo"
10
10
import Layout from "../components/Layout"
11
+ import Divider from "../components/Divider"
11
12
12
13
const Index = ( ) => (
13
14
< Layout className = { styles . main } >
14
15
< Container >
15
16
< MainFeatures />
16
17
</ Container >
18
+ < Divider />
17
19
< Container >
18
20
< MainTechnologies />
19
21
</ Container >
22
+ < Divider />
20
23
< Container >
21
24
< MainDataPlatformFeatures />
22
25
</ Container >
You can’t perform that action at this time.
0 commit comments