This repository has no description
0

Configure Feed

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

fix

+8 -21
public/credblue-logo-small.png

This is a binary file and will not be displayed.

public/credblue-logo.png

This is a binary file and will not be displayed.

+3 -16
public/index.html
··· 6 6 <meta name="viewport" content="width=device-width, initial-scale=1" /> 7 7 <meta name="theme-color" content="#000000" /> 8 8 <meta 9 - name="description" 10 - content="Web site created using create-react-app" 9 + name="cred.blue" 10 + content="Generate a Bluesky credibility score. Understand your Atproto data footprint. Vibe check strangers and new accounts." 11 11 /> 12 - <link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" /> 13 - <!-- 14 - manifest.json provides metadata used when your web app is installed on a 15 - user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/ 16 - --> 12 + <link rel="apple-touch-icon" href="%PUBLIC_URL%/credblue-logo-small.png" /> 17 13 <link rel="manifest" href="%PUBLIC_URL%/manifest.json" /> 18 - <!-- 19 - Notice the use of %PUBLIC_URL% in the tags above. 20 - It will be replaced with the URL of the `public` folder during the build. 21 - Only files inside the `public` folder can be referenced from the HTML. 22 - 23 - Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will 24 - work correctly both with client-side routing and a non-root public URL. 25 - Learn how to configure a non-root public URL by running `npm run build`. 26 - --> 27 14 <title>cred.blue</title> 28 15 <link rel="stylesheet" href="https://use.typekit.net/yhs0sil.css"> 29 16 </head>
+2 -2
public/manifest.json
··· 8 8 "type": "image/x-icon" 9 9 }, 10 10 { 11 - "src": "logo192.png", 11 + "src": "credblue-logo-small.png", 12 12 "type": "image/png", 13 13 "sizes": "192x192" 14 14 }, 15 15 { 16 - "src": "logo512.png", 16 + "src": "credblue-logo.png", 17 17 "type": "image/png", 18 18 "sizes": "512x512" 19 19 }
+3 -3
src/components/TestMatter.js
··· 61 61 ), 62 62 // Left wall 63 63 Matter.Bodies.rectangle( 64 - width / 2, 64 + 0, 65 65 height / 2, 66 66 wallThickness, 67 67 height, ··· 94 94 }); 95 95 96 96 // Blue circles with random sizes. 97 - const minRadius = 2; 98 - const maxRadius = 8; 97 + const minRadius = 10; 98 + const maxRadius = 20; 99 99 100 100 const createCircle = () => { 101 101 const radius = Math.random() * (maxRadius - minRadius) + minRadius;