upload policy file
This commit is contained in:
parent
16ddb88095
commit
00cc23a46d
|
|
@ -3,11 +3,98 @@
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<title>Privacy Policy - Bid Extension</title>
|
<title>Privacy Policy - Bid Extension</title>
|
||||||
|
<style>
|
||||||
|
:root {
|
||||||
|
--primary-color: #3498db;
|
||||||
|
--secondary-color: #2c3e50;
|
||||||
|
--text-color: #333;
|
||||||
|
--light-bg: #f8f9fa;
|
||||||
|
--border-color: #e0e0e0;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
|
||||||
|
line-height: 1.6;
|
||||||
|
color: var(--text-color);
|
||||||
|
max-width: 800px;
|
||||||
|
margin: 0 auto;
|
||||||
|
padding: 20px;
|
||||||
|
background-color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.container {
|
||||||
|
background-color: #fff;
|
||||||
|
border-radius: 8px;
|
||||||
|
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
|
||||||
|
padding: 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
color: var(--primary-color);
|
||||||
|
text-align: center;
|
||||||
|
border-bottom: 2px solid var(--border-color);
|
||||||
|
padding-bottom: 15px;
|
||||||
|
margin-bottom: 25px;
|
||||||
|
}
|
||||||
|
|
||||||
|
h2 {
|
||||||
|
color: var(--secondary-color);
|
||||||
|
border-left: 4px solid var(--primary-color);
|
||||||
|
padding-left: 10px;
|
||||||
|
margin-top: 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
margin-bottom: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
strong {
|
||||||
|
color: var(--secondary-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
code {
|
||||||
|
background-color: var(--light-bg);
|
||||||
|
padding: 2px 5px;
|
||||||
|
border-radius: 3px;
|
||||||
|
font-family: 'Courier New', Courier, monospace;
|
||||||
|
font-size: 0.9em;
|
||||||
|
color: #e74c3c;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: var(--primary-color);
|
||||||
|
text-decoration: none;
|
||||||
|
transition: color 0.3s;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:hover {
|
||||||
|
color: #2980b9;
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
.effective-date {
|
||||||
|
background-color: var(--light-bg);
|
||||||
|
padding: 10px 15px;
|
||||||
|
border-radius: 5px;
|
||||||
|
display: inline-block;
|
||||||
|
margin-bottom: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.contact-section {
|
||||||
|
background-color: var(--light-bg);
|
||||||
|
padding: 15px;
|
||||||
|
border-radius: 5px;
|
||||||
|
margin-top: 30px;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
<div class="container">
|
||||||
<h1>Privacy Policy</h1>
|
<h1>Privacy Policy</h1>
|
||||||
|
|
||||||
<p><strong>Effective Date:</strong> 2025-05-20</p>
|
<div class="effective-date">
|
||||||
|
<strong>Effective Date:</strong> 2025-05-20
|
||||||
|
</div>
|
||||||
|
|
||||||
<p>This privacy policy explains how the Chrome Extension <strong>Bid Extension</strong> handles user data.</p>
|
<p>This privacy policy explains how the Chrome Extension <strong>Bid Extension</strong> handles user data.</p>
|
||||||
|
|
||||||
|
|
@ -25,7 +112,9 @@
|
||||||
<p>If we update this privacy policy in the future, we will notify users by updating this document with the new effective date.</p>
|
<p>If we update this privacy policy in the future, we will notify users by updating this document with the new effective date.</p>
|
||||||
|
|
||||||
<h2>5. Contact</h2>
|
<h2>5. Contact</h2>
|
||||||
|
<div class="contact-section">
|
||||||
<p>If you have any questions about this privacy policy, please contact us at: <a href="mailto:bid@apactech.io">bid@apactech.io</a></p>
|
<p>If you have any questions about this privacy policy, please contact us at: <a href="mailto:bid@apactech.io">bid@apactech.io</a></p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue