File tree Expand file tree Collapse file tree 2 files changed +20
-0
lines changed Expand file tree Collapse file tree 2 files changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -47,20 +47,32 @@ const Content = styles.div`
47
47
margin-bottom: 20px;
48
48
` ;
49
49
50
+ /**
51
+ * Code of Conduct - section
52
+ **/
53
+
50
54
const Section = ( { title, children } ) => (
51
55
< section >
52
56
< SubTitle > { title } </ SubTitle >
53
57
{ children }
54
58
</ section >
55
59
) ;
56
60
61
+ /**
62
+ * Code of Conduct - list item
63
+ **/
64
+
57
65
const ListItem = ( { title, description } ) => (
58
66
< StyledLi >
59
67
< strong > { title } </ strong >
60
68
< p > { description } </ p >
61
69
</ StyledLi >
62
70
) ;
63
71
72
+ /**
73
+ * Code of Conduct
74
+ **/
75
+
64
76
const Codeofconduct = ( ) => {
65
77
return (
66
78
< Layout >
Original file line number Diff line number Diff line change @@ -47,13 +47,21 @@ const Content = styles.div`
47
47
margin-bottom: 20px;
48
48
` ;
49
49
50
+ /**
51
+ * Cookie Section
52
+ **/
53
+
50
54
const CookieSection = ( { title, children } ) => (
51
55
< section >
52
56
< SubTitle > { title } </ SubTitle >
53
57
{ children }
54
58
</ section >
55
59
) ;
56
60
61
+ /**
62
+ * Cookie Policy
63
+ **/
64
+
57
65
const Cookiepolicy = ( ) => {
58
66
return (
59
67
< Layout >
You can’t perform that action at this time.
0 commit comments