From cd37712f63d4f66d80c908cc86b035fa19e65a27 Mon Sep 17 00:00:00 2001 From: Radhika Malpani Date: Thu, 1 Aug 2024 17:35:48 +0530 Subject: [PATCH 1/6] Update Licensing.jsx --- src/Pages/Licensing.jsx | 1 - 1 file changed, 1 deletion(-) 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; `; From 0b39b61daa2549578b989a592ad9bb4caf195f47 Mon Sep 17 00:00:00 2001 From: Radhika Malpani Date: Thu, 1 Aug 2024 17:36:16 +0530 Subject: [PATCH 2/6] Update feedback.css --- src/Pages/feedback.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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"], From dd2fab19d99713d0f843167ef74e66fc11b9df77 Mon Sep 17 00:00:00 2001 From: Radhika Malpani Date: Thu, 1 Aug 2024 17:36:31 +0530 Subject: [PATCH 3/6] Update Contributors.jsx --- src/Pages/Contributors.jsx | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) 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" /> -

{contributor.login}

+

+ + + + {contributor.login} +

Contributions: {contributor.contributions}

From 6a09af61a62f160d56352b3cfe4dc4f7962bad6e Mon Sep 17 00:00:00 2001 From: Radhika Malpani Date: Thu, 1 Aug 2024 17:36:42 +0530 Subject: [PATCH 4/6] Update Contributors.css --- src/Pages/Contributors.css | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) 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 { From 5b0c8396bc6b8646359fc50e09e1f11f4dec22d4 Mon Sep 17 00:00:00 2001 From: Radhika Malpani Date: Thu, 1 Aug 2024 17:37:08 +0530 Subject: [PATCH 5/6] Update Blogs.jsx --- src/Pages/Blogs.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; + } `; From b0cb1a7d59b204942db84d1ec2251e9d26bbb8e7 Mon Sep 17 00:00:00 2001 From: Radhika Malpani Date: Thu, 1 Aug 2024 17:37:25 +0530 Subject: [PATCH 6/6] Update App.jsx --- src/App.jsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) 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({