Skip to content

Commit ac16e57

Browse files
committed
Updated Code of Conduct and Cookie Policy
Signed-off-by: Hemashree M S <hemashree21.msh@gmail.com>
1 parent 42fb44f commit ac16e57

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

src/pages/code-of-conduct/index.tsx

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,20 +47,32 @@ const Content = styles.div`
4747
margin-bottom: 20px;
4848
`;
4949

50+
/**
51+
* Code of Conduct - section
52+
**/
53+
5054
const Section = ({ title, children }) => (
5155
<section>
5256
<SubTitle>{title}</SubTitle>
5357
{children}
5458
</section>
5559
);
5660

61+
/**
62+
* Code of Conduct - list item
63+
**/
64+
5765
const ListItem = ({ title, description }) => (
5866
<StyledLi>
5967
<strong>{title}</strong>
6068
<p>{description}</p>
6169
</StyledLi>
6270
);
6371

72+
/**
73+
* Code of Conduct
74+
**/
75+
6476
const Codeofconduct = () => {
6577
return (
6678
<Layout>

src/pages/cookie-policy/index.tsx

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,13 +47,21 @@ const Content = styles.div`
4747
margin-bottom: 20px;
4848
`;
4949

50+
/**
51+
* Cookie Section
52+
**/
53+
5054
const CookieSection = ({ title, children }) => (
5155
<section>
5256
<SubTitle>{title}</SubTitle>
5357
{children}
5458
</section>
5559
);
5660

61+
/**
62+
* Cookie Policy
63+
**/
64+
5765
const Cookiepolicy = () => {
5866
return (
5967
<Layout>

0 commit comments

Comments
 (0)