This repository has no description
0

Configure Feed

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

add: logo color styles

+15 -27
+2 -2
src/components/Home/Home.js
··· 7 7 const Home = () => { 8 8 return ( 9 9 <main className="home-page"> 10 - <h1>Welcome to Bluesky Score</h1> 10 + <h1>Welcome to cred.blue</h1> 11 11 <p> 12 12 {/* Your home content here */} 13 - Discover and compare Bluesky profiles based on their activity and engagement. 13 + Discover and compare Bluesky accounts based on their activity and engagement. 14 14 </p> 15 15 {/* Include the SearchBar */} 16 16 <SearchBar />
-7
src/components/Login/Login.css
··· 1 1 /* src/components/Login/Login.css */ 2 2 3 - /* General Styling */ 4 - body { 5 - font-family: "articulat-cf", sans-serif; 6 - background-color: #f4f4f9; 7 - margin: 0; 8 - } 9 - 10 3 /* Enable smooth scrolling for the entire page */ 11 4 html { 12 5 scroll-behavior: smooth;
-8
src/components/MainApp/MainApp.css
··· 37 37 font-weight: bold; 38 38 } 39 39 40 - .App { 41 - font-family: "articulat-cf", sans-serif; 42 - margin: 0; 43 - padding: 20px; 44 - text-align: center; 45 - background-color: #f4f4f9; 46 - } 47 - 48 40 form { 49 41 margin: 20px auto; 50 42 width: 100%;
+12
src/components/Navbar/Navbar.css
··· 7 7 border-bottom: 1px solid #eaeaea; /* Light gray border */ 8 8 transition: background-color 0.3s ease, border-color 0.3s ease; /* Smooth transitions */ 9 9 } 10 + 11 + .cred { 12 + color: #3B9AF8; 13 + } 14 + 15 + .period { 16 + color: black; 17 + } 18 + 19 + .blue { 20 + color: #004F84; 21 + } 10 22 11 23 .navbar-container { 12 24 max-width: 1200px; /* Max width of the content */
+1 -1
src/components/Navbar/Navbar.js
··· 28 28 <div className="navbar-container"> 29 29 <div className="navbar-left"> 30 30 <div className="navbar-logo"> 31 - <Link to="/">cred.blue</Link> 31 + <Link to="/"><span className="cred">cred</span><span className="period">.</span><span className="blue">blue</span></Link> 32 32 </div> 33 33 <nav className="navbar-links"> 34 34 <ul>
-8
src/components/ScoreGenerator/ScoreGenerator.css
··· 37 37 font-weight: bold; 38 38 } 39 39 40 - .App { 41 - font-family: "articulat-cf", sans-serif; 42 - margin: 0; 43 - padding: 20px; 44 - text-align: center; 45 - background-color: #f4f4f9; 46 - } 47 - 48 40 form { 49 41 margin: 20px auto; 50 42 display: flex;
-1
src/components/UserProfile/UserProfile.css
··· 4 4 max-width: 800px; 5 5 margin: 0 auto; 6 6 padding: 20px; 7 - font-family: "articulat-cf", sans-serif; 8 7 } 9 8 10 9 .user-profile h2 {