@@ -18,42 +18,38 @@ export const ProductPageTemplate = ({
18
18
fullImage,
19
19
pricing,
20
20
} ) => (
21
- < section className = "section section--gradient" >
22
- < div className = "container" >
23
- < div className = "section" >
24
- < div className = "columns" >
25
- < div className = "column is-10 is-offset-1" >
26
- < div className = "content" >
27
- < div
28
- className = "full-width-image-container margin-top-0"
29
- style = { {
30
- backgroundImage : `url(${
31
- ! ! image . childImageSharp
32
- ? image . childImageSharp . fluid . src
33
- : image
34
- } )`,
35
- } }
36
- >
37
- < h2
38
- className = "has-text-weight-bold is-size-1"
39
- style = { {
40
- boxShadow : '0.5rem 0 0 #f40, -0.5rem 0 0 #f40' ,
41
- backgroundColor : '#f40' ,
42
- color : 'white' ,
43
- padding : '1rem' ,
44
- } }
45
- >
46
- { title }
47
- </ h2 >
48
- </ div >
49
- < div className = "columns" >
50
- < div className = "column is-7" >
51
- < h3 className = "has-text-weight-semibold is-size-2" >
52
- { heading }
53
- </ h3 >
54
- < p > { description } </ p >
55
- </ div >
56
- </ div >
21
+ < div className = "content" >
22
+ < div
23
+ className = "full-width-image-container margin-top-0"
24
+ style = { {
25
+ backgroundImage : `url(${
26
+ ! ! image . childImageSharp ? image . childImageSharp . fluid . src : image
27
+ } )`,
28
+ } }
29
+ >
30
+ < h2
31
+ className = "has-text-weight-bold is-size-1"
32
+ style = { {
33
+ boxShadow : '0.5rem 0 0 #f40, -0.5rem 0 0 #f40' ,
34
+ backgroundColor : '#f40' ,
35
+ color : 'white' ,
36
+ padding : '1rem' ,
37
+ } }
38
+ >
39
+ { title }
40
+ </ h2 >
41
+ </ div >
42
+ < section className = "section section--gradient" >
43
+ < div className = "container" >
44
+ < div className = "section" >
45
+ < div className = "columns" >
46
+ < div className = "column is-7 is-offset-1" >
47
+ < h3 className = "has-text-weight-semibold is-size-2" > { heading } </ h3 >
48
+ < p > { description } </ p >
49
+ </ div >
50
+ </ div >
51
+ < div className = "columns" >
52
+ < div className = "column is-10 is-offset-1" >
57
53
< Features gridItems = { intro . blurbs } />
58
54
< div className = "columns" >
59
55
< div className = "column is-7" >
@@ -104,8 +100,8 @@ export const ProductPageTemplate = ({
104
100
</ div >
105
101
</ div >
106
102
</ div >
107
- </ div >
108
- </ section >
103
+ </ section >
104
+ </ div >
109
105
)
110
106
111
107
ProductPageTemplate . propTypes = {
0 commit comments