This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

at main 4.3 kB View raw
1// src/components/About/About.jsx 2 3import React from 'react'; 4import './About.css'; 5import { Link } from 'react-router-dom'; 6import RelatedPagesNav from '../common/RelatedPagesNav'; 7 8const About = () => { 9 return ( 10 <> 11 <main className="about-page"> 12 <div className="alt-card"> 13 <h1>About cred.blue</h1> 14 <ul> 15 <li>Generate a Bluesky score.</li> 16 <li>Understand your AT Proto data footprint.</li> 17 <li>Vibe check strangers and new accounts.</li> 18 </ul> 19 <h2>Intro</h2> 20 <p>The <strong>cred.blue</strong> platform allows anyone to better understand the data footprint that an <strong>AT Protocol</strong> or <strong>Bluesky</strong> identity is making. During its beta launch, <strong>cred.blue</strong> provides an early version of its custom scoring algorithm that generates a score based on an identity's activity in the ecosystem. Additionally, there is an <strong>Alt Text Rating Tool</strong> that allows you to see how consistently an account includes accessibility alt-text when posting images on Bluesky.</p> 21 22 <p>The <strong>cred.blue</strong> scoring methodology is intended to provide a helpful contextual analysis of the public data associated with an AT Protocol or Bluesky identity. The hope is that the scoring system might help incentivize healthier behaviors and activity patterns on the network.</p> 23 24 <div className="scoring-info"> 25 <p><Link to="/methodology" className="methodology-link">Learn more about the scoring methodology</Link> and how to increase your score.</p> 26 </div> 27 28 <p>Future versions of cred.blue may include authenticated data analysis (for your personal AT Proto data that isn't public), a custom score/tracking lexicon, and an in-app labeler for the Bluesky platform.</p> 29 30 <a href="https://bsky.app/profile/did:plc:7lazllqgiktcts3gs4i6xtv6" target="_blank" rel="noreferrer">Follow cred.blue on Bluesky</a> 31 32 <h2>FAQs</h2> 33 34 <h3>Who created cred.blue?</h3> 35 <p>It was created by <a href="https://bsky.app/profile/dame.is" target="_blank" rel="noreferrer">@dame.is</a>! Dame has been a part of the Bluesky community from almost the very beginning and is passionate about the AT Protocol. Dame was Bluesky user #1,216 and is building cred.blue independently.</p> 36 37 <h3>Why was cred.blue created?</h3> 38 <p>Since its inception, Bluesky has relied upon an innovative domain verification system to help identities establish their and authority. This system is powerful and should be taken advantage of, but it can only do so much in its current form. The cred.blue platform is just one experiment among many that is attempting to help people understand which social media accounts are more (or less) trustworthy.</p> 39 40 <h3>Is this just a social credit score like they have in China?</h3> 41 <p>Not at all! To begin with, the often imagined "social credit" system that many people think exists in China is not really real... to better understand the prevalent misconceptions people have about this subject, check out <a href="https://en.wikipedia.org/wiki/Social_Credit_System" target="_blank" rel="noreferrer">the Wikipedia article</a>.</p> 42 43 <p>At its core, the cred.blue scoring system is just an attempt to help people understand the data footprint that is being left behind by every Bluesky or AT Protocol identity. In the digital ecosystem we find ourselves in, it's never been more vital to have resources that can help humans effectively and safely navigate their online spaces. Understanding data is a key part of the solution.</p> 44 45 <h3>Why is cred.blue in a "beta" state?</h3> 46 <p>To put it simply, cred.blue is very experimental and at this early stage things will likely change a lot. The first version of the scoring algorithm lays a foundation for future plans, but it will take some time (and real-world usage) to calibrate the model's weights and variables.</p> 47 48 {/* Add the related pages navigation */} 49 <RelatedPagesNav currentPage="about" /> 50 </div> 51 </main> 52 </> 53 ); 54}; 55 56export default About;