From 1a22c5a1a98f9f7dc6ad468fce6352329e44f4bd Mon Sep 17 00:00:00 2001 From: Prashant Kumar Niraj Date: Sun, 1 Feb 2026 18:52:08 +0530 Subject: [PATCH 1/6] Fix conflicting Tailwind CSS utility classes on About page --- src/pages/about.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/about.jsx b/src/pages/about.jsx index 88c1768c..9012d4e8 100644 --- a/src/pages/about.jsx +++ b/src/pages/about.jsx @@ -143,7 +143,7 @@ export default function About() {
-

+

ABOUT

@@ -179,7 +179,7 @@ export default function About() { }} >

-

+

GSOC CONTRIBUTION

From b9868c91e976a9223a95dc18971c3ec8a2ec1962 Mon Sep 17 00:00:00 2001 From: Prashant Kumar Niraj Date: Mon, 2 Feb 2026 17:07:42 +0530 Subject: [PATCH 2/6] Update Twitter icon to X logo --- src/components/Footer.jsx | 4 ++-- src/pages/index.jsx | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/Footer.jsx b/src/components/Footer.jsx index ea36f59c..dbf3424a 100644 --- a/src/components/Footer.jsx +++ b/src/components/Footer.jsx @@ -3,7 +3,7 @@ import Link from 'next/link' import { Container } from '@/components/Container' import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' import { faEnvelope } from '@fortawesome/free-solid-svg-icons' -import { faDiscord, faGithub, faGitlab, faTwitter } from '@fortawesome/free-brands-svg-icons' +import { faDiscord, faGithub, faGitlab, faXTwitter } from '@fortawesome/free-brands-svg-icons' function NavLink({ href, children }) { return ( @@ -46,7 +46,7 @@ export function Footer() { - + diff --git a/src/pages/index.jsx b/src/pages/index.jsx index 14e063cd..b409e4a2 100644 --- a/src/pages/index.jsx +++ b/src/pages/index.jsx @@ -10,7 +10,7 @@ import { faDiscord, faGithub, faGitlab, - faTwitter, + faXTwitter, } from '@fortawesome/free-brands-svg-icons' import { CardEffect } from '@/components/CardEffect' import { Banner } from '@/components/Banner' @@ -92,7 +92,7 @@ export default function Home() { className="text-zinc-500 transition hover:text-[#00843D] dark:text-zinc-400 dark:hover:text-yellow-400" href="https://twitter.com/aossie_org" > - +
From 96e562b8a2a2121dad02e39bb6d15efcdc9f8873 Mon Sep 17 00:00:00 2001 From: Prashant Kumar Niraj Date: Tue, 3 Feb 2026 19:50:35 +0530 Subject: [PATCH 3/6] Fix footer mail icon to use mailto link --- src/components/Footer.jsx | 40 +++++++++++++++++++++++++++++---------- 1 file changed, 30 insertions(+), 10 deletions(-) diff --git a/src/components/Footer.jsx b/src/components/Footer.jsx index dbf3424a..d6954d0c 100644 --- a/src/components/Footer.jsx +++ b/src/components/Footer.jsx @@ -33,19 +33,39 @@ export function Footer() { © 2016-2025 AOSSIE. All rights reserved.

- - + + + + + - - + + - - + + - - - - +
From 0757c9a3f3f0e6e4b7b719c444720741794433f4 Mon Sep 17 00:00:00 2001 From: Prashant Kumar Niraj Date: Thu, 5 Feb 2026 15:42:19 +0530 Subject: [PATCH 4/6] Fix landing page email icon to open mail client --- src/pages/index.jsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/pages/index.jsx b/src/pages/index.jsx index b409e4a2..d6852587 100644 --- a/src/pages/index.jsx +++ b/src/pages/index.jsx @@ -59,13 +59,13 @@ export default function Home() { achieve innovation and education.

- - - + + + Date: Wed, 11 Feb 2026 17:01:22 +0530 Subject: [PATCH 5/6] Centralize organization statistics into shared config --- src/config/orgStats.js | 5 +++++ src/pages/about.jsx | 13 ++++++++++--- src/pages/index.jsx | 13 ++++++++++--- 3 files changed, 25 insertions(+), 6 deletions(-) create mode 100644 src/config/orgStats.js diff --git a/src/config/orgStats.js b/src/config/orgStats.js new file mode 100644 index 00000000..f5f97177 --- /dev/null +++ b/src/config/orgStats.js @@ -0,0 +1,5 @@ +export const orgStats = { + activeProjects: 34, + totalContributors: 500, + communityCount: 3800, +} diff --git a/src/pages/about.jsx b/src/pages/about.jsx index 9012d4e8..0b83a7b7 100644 --- a/src/pages/about.jsx +++ b/src/pages/about.jsx @@ -5,6 +5,7 @@ import { Container } from '@/components/Container'; import { Banner } from '@/components/Banner'; import React from 'react'; import { Line } from 'react-chartjs-2'; +import { orgStats } from '@/config/orgStats' import { Chart as ChartJS, LineElement, CategoryScale, LinearScale, PointElement } from 'chart.js'; ChartJS.register(LineElement, CategoryScale, LinearScale, PointElement); @@ -154,15 +155,21 @@ export default function About() {

-

34+

+

+ {orgStats.activeProjects}+ +

Active Projects

-

500+

+

+ {orgStats.totalContributors}+ +

Total Contributors

-

3800+

+

+ {orgStats.communityCount}+ +

Community Count

diff --git a/src/pages/index.jsx b/src/pages/index.jsx index d6852587..c0688629 100644 --- a/src/pages/index.jsx +++ b/src/pages/index.jsx @@ -1,3 +1,4 @@ +import { orgStats } from '@/config/orgStats' import Head from 'next/head' import Link from 'next/link' import Image from 'next/image' @@ -118,15 +119,21 @@ export default function Home() {
Active Projects
-

34+

+

+ {orgStats.activeProjects}+ +

Total Contributors
-

500+

+

+ {orgStats.totalContributors}+ +

Community Count
-

2000+

+

+ {orgStats.communityCount}+ +

From b11c1045e4c2dd0b3f2730832870c0ef2c9354b9 Mon Sep 17 00:00:00 2001 From: Prashant Kumar Niraj Date: Fri, 13 Feb 2026 10:44:38 +0530 Subject: [PATCH 6/6] Fix hover flickering on Learn More About Us button --- src/pages/index.jsx | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/pages/index.jsx b/src/pages/index.jsx index c0688629..bdac3a7d 100644 --- a/src/pages/index.jsx +++ b/src/pages/index.jsx @@ -101,10 +101,9 @@ export default function Home() { - - Learn More About Us - - + + +