This repository has no description
1import React from 'react';
2import './PrivacyTerms.css';
3
4const Privacy = () => {
5 return (
6 <>
7 <main className="privacy-terms-page">
8 <div className="alt-card">
9 <h1>Privacy Policy</h1>
10 <div className="last-updated">Last Updated: February 19, 2025</div>
11
12 <h2>Introduction</h2>
13 <p>This Privacy Policy explains how cred.blue ("we," "our," or "us") collects, uses, and protects information when you use our website and services. We are committed to protecting your privacy and being transparent about our data practices.</p>
14
15 <h2>Information We Collect</h2>
16
17 <h3>Information You Provide</h3>
18 <ul>
19 <li>Email addresses and related information when you opt-in to receive updates or notifications</li>
20 <li>Bluesky authentication credentials when you choose to log in (processed through Bluesky's authentication system)</li>
21 </ul>
22
23 <h3>Information We Collect and Store</h3>
24 <ul>
25 <li>Public Bluesky/AT Protocol PDS data associated with searched user accounts</li>
26 <li>This includes publicly available posts, follows, likes, and other public account information</li>
27 <li>We create and maintain a database of this public information when usernames are searched or when scores are generated</li>
28 <li>This stored data helps us improve our service, provide enhanced analytics, and develop new features</li>
29 </ul>
30
31 <h3>Automatically Collected Information</h3>
32 <ul>
33 <li>Standard server logs</li>
34 <li>Device information</li>
35 <li>Browser type and version</li>
36 <li>IP address</li>
37 <li>Pages visited and features used</li>
38 </ul>
39
40 <h2>How We Use Information</h2>
41
42 <h3>Public Bluesky Data</h3>
43 <ul>
44 <li>To calculate scores and provide analytics</li>
45 <li>To display user statistics and insights</li>
46 <li>To maintain historical data for trend analysis and feature improvement</li>
47 <li>To develop and enhance our scoring algorithms</li>
48 <li>To provide comparative analytics and historical insights</li>
49 </ul>
50
51 <h3>User-Provided Information</h3>
52 <ul>
53 <li>To send requested updates and notifications</li>
54 <li>To provide enhanced tools and services for logged-in users</li>
55 <li>To improve our services and user experience</li>
56 </ul>
57
58 <h2>Data Storage and Security</h2>
59 <ul>
60 <li>We maintain a secure database of public Bluesky data collected through our service</li>
61 <li>This data is stored and processed in accordance with industry standard security practices</li>
62 <li>Email addresses and related information for notifications are stored securely</li>
63 <li>We implement appropriate technical and organizational security measures to protect stored information</li>
64 <li>We regularly review and update our security practices to maintain data protection</li>
65 </ul>
66
67 <h2>Data Retention</h2>
68 <ul>
69 <li>We retain collected public data for as long as necessary to provide and improve our services</li>
70 <li>You may request information about how your public data is being used</li>
71 <li>We regularly review our data retention practices and may update them as needed</li>
72 </ul>
73
74 <h2>Third-Party Services</h2>
75 <ul>
76 <li>We use Bluesky's authentication system for user login</li>
77 <li>We access public data through AT Protocol/Bluesky PDSs</li>
78 <li>We do not share collected information with third parties unless necessary to establish and maintain important services or features</li>
79 </ul>
80
81 <h2>Your Rights</h2>
82 <p>You have the right to:</p>
83 <ul>
84 <li>Opt-out of email notifications at any time</li>
85 <li>Request deletion of your email address and associated information</li>
86 <li>Access information about how we use your data</li>
87 <li>Request information about what public data we have stored</li>
88 </ul>
89
90 <div className="contact">
91 <h2>Contact Us</h2>
92 <p>For privacy-related questions or concerns, please contact us at privacy@cred.blue</p>
93 </div>
94 </div>
95 </main>
96 </>
97 );
98};
99
100export default Privacy;