This repository has no description
1import React from 'react';
2import './PrivacyTerms.css';
3
4const Terms = () => {
5 return (
6 <>
7 <main className="privacy-terms-page">
8 <div className="alt-card">
9 <h1>Terms of Service</h1>
10 <div className="last-updated">Last Updated: February 19, 2025</div>
11
12 <div className="section">
13 <h2>1. Acceptance of Terms</h2>
14 <p>By accessing or using cred.blue ("the Service"), you agree to be bound by these Terms of Service ("Terms"). If you disagree with any part of these terms, you may not access the Service.</p>
15 </div>
16
17 <div className="section">
18 <h2>2. Description of Service</h2>
19 <p>cred.blue provides:</p>
20 <ul>
21 <li>Analysis of public Bluesky user data</li>
22 <li>scoring based on public information</li>
23 <li>Enhanced tools for authenticated Bluesky users</li>
24 <li>Optional email updates and notifications</li>
25 <li>Storage and analysis of public user data to improve service quality</li>
26 </ul>
27 </div>
28
29 <div className="section">
30 <h2>3. User Responsibilities</h2>
31 <p>You agree to:</p>
32 <ul>
33 <li>Use the Service in compliance with all applicable laws</li>
34 <li>Not use the Service to harass, abuse, or harm others</li>
35 <li>Not attempt to access non-public data or bypass security measures</li>
36 <li>Understand that public data associated with searched accounts will be stored and analyzed</li>
37 </ul>
38 </div>
39
40 <div className="section">
41 <h2>4. Data Collection and Usage</h2>
42 <ul>
43 <li>We collect and store copies of public Bluesky data when usernames are searched or scores are generated</li>
44 <li>Stored data is used to improve our services, provide analytics, and develop new features</li>
45 <li>We maintain appropriate security measures to protect stored data</li>
46 <li>We do not collect or store private or protected Bluesky data</li>
47 </ul>
48 </div>
49
50 <div className="section">
51 <h2>5. Intellectual Property</h2>
52 <ul>
53 <li>All content, features, and functionality are owned by cred.blue</li>
54 <li>The Service's scoring system and algorithms are proprietary</li>
55 <li>Users may not reproduce, distribute, or create derivative works without permission</li>
56 </ul>
57 </div>
58
59 <div className="section">
60 <h2>6. Account Terms</h2>
61 <ul>
62 <li>Authentication is handled through Bluesky's system</li>
63 <li>You are responsible for maintaining the security of your Bluesky credentials</li>
64 <li>We reserve the right to terminate access to enhanced features at our discretion</li>
65 </ul>
66 </div>
67
68 <div className="section">
69 <h2>7. Disclaimer of Warranties</h2>
70 <ul>
71 <li>The Service is provided "as is" without warranties of any kind</li>
72 <li>We do not guarantee the accuracy of scores or analytics</li>
73 <li>We are not responsible for the accuracy of public Bluesky data</li>
74 <li>We do not guarantee the availability or retention period of stored data</li>
75 </ul>
76 </div>
77
78 <div className="section">
79 <h2>8. Limitation of Liability</h2>
80 <p>We shall not be liable for:</p>
81 <ul>
82 <li>Any indirect, incidental, or consequential damages</li>
83 <li>Decisions made based on scores or analytics</li>
84 <li>Temporary service interruptions or data unavailability</li>
85 <li>Any issues arising from our storage or analysis of public data</li>
86 </ul>
87 </div>
88
89 <div className="section">
90 <h2>9. Modifications to Service</h2>
91 <p>We reserve the right to:</p>
92 <ul>
93 <li>Modify or discontinue any part of the Service</li>
94 <li>Update these Terms at any time</li>
95 <li>Change our scoring algorithms and methodologies</li>
96 <li>Modify our data collection and retention practices</li>
97 </ul>
98 </div>
99
100 <div className="contact">
101 <h2>10. Contact Information</h2>
102 <p>For questions about these Terms, please contact us at terms@cred.blue</p>
103 </div>
104 </div>
105 </main>
106 </>
107 );
108};
109
110export default Terms;