diff --git a/src/App.jsx b/src/App.jsx index 8b1fe38..50c63bb 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -47,14 +47,14 @@ import Contributors from './Pages/Contributors.jsx'; const ThemeContext = createContext(); const App = () => { - const theme = useSelector((state) => state.theme.value) ? "dark" : "light"; - const [currentTheme, setTheme] = useState(theme); + const theme = useSelector((state) => state.theme.value) ? "dark" : "light"; + const [currentTheme, setTheme] = useState(theme); - const toggleTheme = () => { - const newTheme = currentTheme === 'light' ? 'dark' : 'light'; - setTheme(newTheme); - localStorage.setItem('theme', newTheme); - }; + const toggleTheme = () => { + const newTheme = currentTheme === 'light' ? 'dark' : 'light'; + setTheme(newTheme); + localStorage.setItem('theme', newTheme); + }; useEffect(() => { AOS.init({ diff --git a/src/Pages/Blogs.jsx b/src/Pages/Blogs.jsx index 059cb21..5ca811d 100644 --- a/src/Pages/Blogs.jsx +++ b/src/Pages/Blogs.jsx @@ -122,13 +122,13 @@ const BlogsWrapper = styled.div` max-width: 1200px; margin: 0 auto; line-height: 1.6; - background-color: #e3f2fd; + h1 { font-size: 2.5rem; margin-top: 80px; text-align: center; - color: #212ea0; + } `; diff --git a/src/Pages/Contributors.css b/src/Pages/Contributors.css index 090bf8b..9ecac62 100644 --- a/src/Pages/Contributors.css +++ b/src/Pages/Contributors.css @@ -1,10 +1,15 @@ - .contributors-container { width: 100%; height: 100%; padding-top: 2rem; overflow: hidden; - background-color: rgb(221, 229, 246); /* Change background color to white or any light color */ + +} + +.github-icon { + margin-right: 0.5rem; + vertical-align: middle; + fill: white; /* Adjust color as needed */ } @@ -13,7 +18,6 @@ text-align: center; font-size: 2.5rem; font-weight: 600; - color: #1f2937; margin-bottom: 2rem; text-transform: uppercase; } @@ -23,7 +27,7 @@ flex-wrap: wrap; justify-content: center; gap: 2rem; - margin-bottom: 1rem; + margin-bottom: 4rem; } .contributor-card { @@ -32,8 +36,8 @@ display: flex; flex-direction: column; align-items: center; - background-color: #1f2937; - border: 1px solid #d1d5db; + background-color: rgb(0, 0, 85); + border: 2px solid #6969ff; border-radius: 0.5rem; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); padding: 1rem; @@ -55,6 +59,7 @@ border-radius: 50%; object-fit: cover; margin-bottom: 1rem; + border: 2.5px solid #9e9eff; } .contributor-name { diff --git a/src/Pages/Contributors.jsx b/src/Pages/Contributors.jsx index 1156037..e257703 100644 --- a/src/Pages/Contributors.jsx +++ b/src/Pages/Contributors.jsx @@ -37,7 +37,18 @@ function Contributors() { className="contributor-avatar" /> -
Contributions: {contributor.contributions}
diff --git a/src/Pages/Licensing.jsx b/src/Pages/Licensing.jsx index 47fe02b..91b2593 100644 --- a/src/Pages/Licensing.jsx +++ b/src/Pages/Licensing.jsx @@ -8,7 +8,6 @@ const Container = styled.div` margin-top: 60px; padding: 20px; font-family: Arial, sans-serif; - background-color: #f9f9f9; border-radius: 5px; `; diff --git a/src/Pages/feedback.css b/src/Pages/feedback.css index f1dd362..ea2ee3d 100644 --- a/src/Pages/feedback.css +++ b/src/Pages/feedback.css @@ -13,12 +13,12 @@ align-items: center; justify-content: center; padding: 20px; - background-color: #f9f9f9; border-radius: 10px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); width: 100%; max-width: 600px; box-sizing: border-box; + margin-top: 55px; } .feedback-form h2 { @@ -29,7 +29,7 @@ } .feedback-form p { - color: #666; + font-size: 16px; margin-bottom: 20px; text-align: center; @@ -58,7 +58,7 @@ .feedback-form label { font-size: 14px; margin-bottom: 5px; - color: #333; + } .feedback-form input[type="text"],