Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added privacy policy page to the website #381

Merged
merged 1 commit into from
Oct 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
61 changes: 61 additions & 0 deletions PrivacyPolicy/PrivacyPolicy.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
/* Background container for the privacy policy page */
.background-container {
min-height: 100vh;
background-image: linear-gradient(135deg, #d22d72 10%, #e45d27 100%,#e4c827 30%);
background-size: cover;
background-position: center;
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
}

/* Policy container styles */
.policy-container {
padding: 32px; /* Equivalent to theme.spacing(4) */
max-width: 800px;
margin: auto;
background-color: rgba(64, 47, 47, 0.8);
backdrop-filter: blur(10px);
border-radius: 8px; /* Adjust as needed */
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
transition: transform 0.3s ease, box-shadow 0.3s ease;
color: white;
}

.policy-container:hover {
transform: translateY(-5px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

/* Typography */
h1 {
font-family: 'Montserrat', Arial, sans-serif;
font-size: 2.5rem; /* Larger and more prominent heading */
color: #ff6f61;
text-align: center;
margin-bottom: 20px;
}

h2 {
font-family: 'Future2', Arial, sans-serif;
font-size: 1.75rem; /* Slightly smaller than h1 */
color: #ff6f61;
margin-top: 30px;
margin-bottom: 10px;
}

p {
font-family: Arial, sans-serif; /* Clean and easy to read */
font-size: 1.125rem; /* Slightly larger for readability */
font-weight: 300; /* Light font-weight for modern look */
line-height: 1.6; /* Increase line spacing for readability */
color: #ffffff;
margin-bottom: 15px;
}
.center-text {
text-align: center;
font-family: Arial, sans-serif; /* Optional: Choose your preferred font */
font-size: 1.125rem; /* Adjust size if needed */
margin: 20px 0; /* Adds space above and below the text */
}
35 changes: 35 additions & 0 deletions PrivacyPolicy/PrivacyPolicy.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy</title>
<link rel="stylesheet" href="PrivacyPolicy.css">
</head>
<body>
<div class="background-container">
<div class="policy-container">
<h1>Privacy Policy</h1>
<p class="center-text">Welcome to our Privacy Policy page. Your privacy is critically important to us.</p>

<h2>1. Information We Collect</h2>
<p>We collect several types of information for various purposes to provide and improve our service to you.</p>

<h2>2. How We Use Your Information</h2>
<p>We use the data we collect to operate, maintain, and improve our services. This includes using your data to understand how users interact with our services and to communicate updates.</p>

<h2>3. Cookies</h2>
<p>We use cookies and similar tracking technologies to track the activity on our website and hold certain information.</p>

<h2>4. Data Protection Rights</h2>
<p>You have the right to access, update, or delete your personal information. If you make a request, we have one month to respond to you.</p>

<h2>5. Changes to This Privacy Policy</h2>
<p>We may update our Privacy Policy from time to time. You are advised to review this page periodically for any changes.</p>

<h2>6. Contact Us</h2>
<p>If you have any questions about this Privacy Policy, please contact us.</p>
</div>
</div>
</body>
</html>
1 change: 1 addition & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -496,6 +496,7 @@ <h2>Quick Links</h2>
<li><a href="#contact">Contact</a></li>
<li><a href="#faq">FAQ</a></li>
<li><a href="Contributors/contributor.html">Contributors</a></li>
<li><a href="PrivacyPolicy/PrivacyPolicy.html">Privacy Policy</a></li>
</ul>
</div>
<div class="footer-section contact-form">
Expand Down
Loading