This repository has no description
0

Configure Feed

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

add analytics

+27 -1
+20
README.md
··· 14 14 15 15 ## The Scoring Methodology 16 16 17 + Your cred.blue score is generated based on two major categories... 17 18 19 + 1. Bluesky Data 20 + - Profile content (avatar, description, etc) 21 + - Posts, likes, lists, etc 22 + - Social graph 23 + - Labelers and moderation 24 + - etc. 25 + 26 + 2. AT Protocol Data 27 + - Personal Data Server (PDS) 28 + - Third-party lexicon usage 29 + - Domain name 30 + - PLC logs 31 + - etc. 32 + 33 + Seperate scores are generated for each category and then combined to produce your final cred.blue score, allowing you to easily see which major category (Bluesky vs AT Proto) has the most impact on your score. 34 + 35 + For Version 1 of the scoring algorithm, there is a max score of 1,000 points. This may change in the future, or it could theoritically even be scaled down depending on feedback and usage. 36 + 37 + A score between 0 - 250 likely indicates that an account is either very new to the network or isn't very active. A score between 250 - 18 38 19 39 ### How do I increase my score? 20 40
+3
src/components/ZenPage.css
··· 1 + .zen-container .loading-text { 2 + display: none; 3 + }
+4 -1
src/index.js
··· 4 4 import App from './App'; 5 5 import { ThemeProvider } from './contexts/ThemeContext'; 6 6 import "./index.css"; 7 + import { Analytics } from '@vercel/analytics/next'; 7 8 8 9 const container = document.getElementById('root'); 9 10 const root = ReactDOM.createRoot(container); ··· 11 12 root.render( 12 13 <React.StrictMode> 13 14 <ThemeProvider> 14 - <App /> 15 + <Analytics> 16 + <App /> 17 + </Analytics> 15 18 </ThemeProvider> 16 19 </React.StrictMode> 17 20 );