You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<p>This Code of Conduct is adapted from the <ahref="https://www.contributor-covenant.org/"target="_blank"rel="noopener noreferrer">Contributor Covenant</a>, version 2.0, available at <ahref="https://www.contributor-covenant.org/version/2/0/code_of_conduct/"target="_blank"rel="noopener noreferrer">https://www.contributor-covenant.org/version/2/0/code_of_conduct.html</a>.</p>
194
-
<p>Community Impact Guidelines were inspired by <ahref="https://github.com/mozilla/inclusion"target="_blank"rel="noopener noreferrer">Mozilla's code of conduct enforcement ladder</a>.</p>
176
+
<p>Community Impact Guidelines were inspired by <ahref="https://github.com/mozilla/inclusion"target="_blank"rel="noopener noreferrer">Mozilla's code of conduct enforcement ladder</a>.</p>
195
177
<p>For answers to common questions about this code of conduct, see the FAQ at <ahref="https://www.contributor-covenant.org/faq/"target="_blank"rel="noopener noreferrer">https://www.contributor-covenant.org/faq/</a>. Translations are available at <ahref="https://www.contributor-covenant.org/translations"target="_blank"rel="noopener noreferrer">https://www.contributor-covenant.org/translations</a>.</p>
constCookieSection: React.FC<CookieSectionProps>=({ title, children })=>(
50
+
// Reusable Components
51
+
constSection=({ title, children })=>(
67
52
<section>
68
53
<SubTitle>{title}</SubTitle>
69
54
{children}
70
55
</section>
71
56
);
72
57
73
-
/**
74
-
* Cookie Policy
75
-
**/
76
-
77
-
constCookiePolicy: React.FC=()=>{
78
-
return(
79
-
<Layout>
80
-
<CookiePolicyContainer>
81
-
<Title>Cookie Policy</Title>
82
-
<Content>
83
-
<p><strong>Last Updated:</strong> 23rd May 2024</p>
84
-
<CookieSectiontitle="Our Mission">
85
-
<p>Welcome to CodeHarborHub. Our mission is to provide accessible and comprehensive educational resources to learners of all levels. This Cookie Policy explains how we use cookies on our website.</p>
86
-
</CookieSection>
87
-
<CookieSectiontitle="What Are Cookies?">
88
-
<p>Cookies are small text files stored on your device when you visit a website. They help the site to remember your preferences and activities over time.</p>
89
-
</CookieSection>
90
-
<CookieSectiontitle="How We Use Cookies">
91
-
<p>We use cookies to:</p>
92
-
<StyledUl>
93
-
<StyledLi>Enhance your user experience</StyledLi>
94
-
<StyledLi>Analyze our website traffic</StyledLi>
95
-
<StyledLi>Provide personalized content and advertisements</StyledLi>
<p>These cookies are used to deliver ads more relevant to you and your interests. They may be set by us or by third-party providers.</p>
108
-
</StyledOl>
109
-
</CookieSection>
110
-
<CookieSectiontitle="Managing Cookies">
111
-
<p>You can manage or disable cookies through your browser settings. For more information on how to do this, visit your browser’s help section.</p>
112
-
</CookieSection>
113
-
<CookieSectiontitle="Third-Party Cookies">
114
-
<p>We may use third-party cookies for various purposes such as analytics and advertising. These cookies are governed by the privacy policies of the respective third parties.</p>
115
-
</CookieSection>
116
-
<CookieSectiontitle="Cookie Policy Updates">
117
-
<p>We may update this Cookie Policy from time to time. We will notify you of any significant changes by posting the new policy on our website and updating the date at the top of this page.</p>
118
-
</CookieSection>
119
-
<CookieSectiontitle="Contact Us">
120
-
<p>If you have any questions or concerns about our Cookie Policy, please contact us at:</p>
<p><strong>Last Updated:</strong> 23rd May 2024</p>
69
+
);
70
+
71
+
// Separate Sections as Components
72
+
constMission=()=>(
73
+
<Sectiontitle="Our Mission">
74
+
<p>Welcome to CodeHarborHub. Our mission is to provide accessible and comprehensive educational resources to learners of all levels. This Cookie Policy explains how we use cookies on our website.</p>
75
+
</Section>
76
+
);
77
+
78
+
// Separate Sections as Components
79
+
constWhatAreCookies=()=>(
80
+
<Sectiontitle="What Are Cookies?">
81
+
<p>Cookies are small text files stored on your device when you visit a website. They help the site to remember your preferences and activities over time.</p>
82
+
</Section>
83
+
);
84
+
85
+
// Separate Sections as Components
86
+
constHowWeUseCookies=()=>(
87
+
<Sectiontitle="How We Use Cookies">
88
+
<p>We use cookies to:</p>
89
+
<StyledUl>
90
+
<StyledLi>Enhance your user experience</StyledLi>
91
+
<StyledLi>Analyze our website traffic</StyledLi>
92
+
<StyledLi>Provide personalized content and advertisements</StyledLi>
93
+
</StyledUl>
94
+
</Section>
95
+
);
96
+
97
+
// Separate Sections as Components
98
+
constTypesOfCookies=()=>(
99
+
<Sectiontitle="Types of Cookies We Use">
100
+
<StyledOl>
101
+
<ListItem
102
+
title="Essential Cookies"
103
+
description="These cookies are necessary for our website to function properly and cannot be switched off in our systems."
104
+
/>
105
+
<ListItem
106
+
title="Performance Cookies"
107
+
description="These cookies help us understand how visitors interact with our website by collecting and reporting information anonymously."
108
+
/>
109
+
<ListItem
110
+
title="Functionality Cookies"
111
+
description="These cookies enable the website to provide enhanced functionality and personalization based on your interactions."
112
+
/>
113
+
<ListItem
114
+
title="Targeting/Advertising Cookies"
115
+
description="These cookies are used to deliver ads more relevant to you and your interests. They may be set by us or by third-party providers."
116
+
/>
117
+
</StyledOl>
118
+
</Section>
119
+
);
120
+
121
+
// Separate Sections as Components
122
+
constManagingCookies=()=>(
123
+
<Sectiontitle="Managing Cookies">
124
+
<p>You can manage or disable cookies through your browser settings. For more information on how to do this, visit your browser’s help section.</p>
125
+
</Section>
126
+
);
127
+
128
+
// Separate Sections as Components
129
+
constThirdPartyCookies=()=>(
130
+
<Sectiontitle="Third-Party Cookies">
131
+
<p>We may use third-party cookies for various purposes such as analytics and advertising. These cookies are governed by the privacy policies of the respective third parties.</p>
132
+
</Section>
133
+
);
134
+
135
+
// Separate Sections as Components
136
+
constCookiePolicyUpdates=()=>(
137
+
<Sectiontitle="Cookie Policy Updates">
138
+
<p>We may update this Cookie Policy from time to time. We will notify you of any significant changes by posting the new policy on our website and updating the date at the top of this page.</p>
139
+
</Section>
140
+
);
141
+
142
+
// Separate Sections as Components
143
+
constContactUs=()=>(
144
+
<Sectiontitle="Contact Us">
145
+
<p>If you have any questions or concerns about our Cookie Policy, please contact us at:</p>
0 commit comments