From ec27549d4a24c8381672d01005ef433cded370d3 Mon Sep 17 00:00:00 2001 From: Tania Chakraborty Date: Thu, 11 Dec 2025 10:56:56 -0500 Subject: [PATCH 1/2] Add November 2025 community spotlight - Add november-2025.json with top 23 contributors - Top 5 Community All Stars: LivSterling, sheikhlimon, shelajev, The-Best-Codes, professordnyc - Full monthly leaderboard with all 23 contributors - No internal team stars for this month - Update config.json to add November and set as default month - Update index.tsx to import November 2025 data --- .../src/pages/community/data/config.json | 9 +++- .../pages/community/data/november-2025.json | 51 +++++++++++++++++++ documentation/src/pages/community/index.tsx | 4 +- 3 files changed, 61 insertions(+), 3 deletions(-) create mode 100644 documentation/src/pages/community/data/november-2025.json diff --git a/documentation/src/pages/community/data/config.json b/documentation/src/pages/community/data/config.json index 211521c9a189..bd133b9a313c 100644 --- a/documentation/src/pages/community/data/config.json +++ b/documentation/src/pages/community/data/config.json @@ -34,7 +34,12 @@ "id": "october-2025", "display": "October 2025", "file": "october-2025.json" + }, + { + "id": "november-2025", + "display": "November 2025", + "file": "november-2025.json" } ], - "defaultMonth": "october-2025" -} \ No newline at end of file + "defaultMonth": "november-2025" +} diff --git a/documentation/src/pages/community/data/november-2025.json b/documentation/src/pages/community/data/november-2025.json new file mode 100644 index 000000000000..a1bae3a5c424 --- /dev/null +++ b/documentation/src/pages/community/data/november-2025.json @@ -0,0 +1,51 @@ +{ + "month": "November 2025", + "communityStars": [ + { + "name": "Sterling Chapman", + "handle": "LivSterling" + }, + { + "name": "Sheikh Limon", + "handle": "sheikhlimon" + }, + { + "name": "Oleg Šelajev", + "handle": "shelajev" + }, + { + "name": "BestCodes", + "handle": "The-Best-Codes" + }, + { + "name": "Dawn C. Hayes", + "handle": "professordnyc" + } + ], + "teamStars": [], + "leaderboard": [ + { "handle": "LivSterling", "rank": 1, "medal": "🥇" }, + { "handle": "sheikhlimon", "rank": 2, "medal": "🥈" }, + { "handle": "shelajev", "rank": 3, "medal": "🥉" }, + { "handle": "The-Best-Codes", "rank": 4 }, + { "handle": "professordnyc", "rank": 5 }, + { "handle": "Smyekh", "rank": 6 }, + { "handle": "hammonr1", "rank": 7 }, + { "handle": "digitalfl0wer", "rank": 8 }, + { "handle": "irksomeisaac", "rank": 9 }, + { "handle": "DannyGarciaDEV", "rank": 10 }, + { "handle": "QAInsights", "rank": 11 }, + { "handle": "godswillumukoro", "rank": 12 }, + { "handle": "dvelm", "rank": 13 }, + { "handle": "pillowexpress", "rank": 14 }, + { "handle": "dikondaashish", "rank": 15 }, + { "handle": "devchicajas", "rank": 16 }, + { "handle": "catbilyeu", "rank": 17 }, + { "handle": "CodingWCal", "rank": 18 }, + { "handle": "avishwanathan88", "rank": 19 }, + { "handle": "gowthamraviteja", "rank": 20 }, + { "handle": "vaibhavgeek", "rank": 21 }, + { "handle": "AmeenCodes01", "rank": 22 }, + { "handle": "ArjunFrancis", "rank": 23 } + ] +} diff --git a/documentation/src/pages/community/index.tsx b/documentation/src/pages/community/index.tsx index e063034bab7f..c24bd3ec5609 100644 --- a/documentation/src/pages/community/index.tsx +++ b/documentation/src/pages/community/index.tsx @@ -13,6 +13,7 @@ import july2025Data from "./data/july-2025.json"; import august2025Data from "./data/august-2025.json"; import september2025Data from "./data/september-2025.json"; import october2025Data from "./data/october-2025.json"; +import november2025Data from "./data/november-2025.json"; import communityContentData from "./data/community-content.json"; // Create a data map for easy access @@ -24,6 +25,7 @@ const communityDataMap = { "august-2025": august2025Data, "september-2025": september2025Data, "october-2025": october2025Data, + "november-2025": november2025Data, }; function UpcomingEventsSection() { @@ -467,4 +469,4 @@ export default function Community(): ReactNode { ); -} \ No newline at end of file +} From 9c0908592482a310bb46b9007eb890c8552956c2 Mon Sep 17 00:00:00 2001 From: Tania Chakraborty Date: Thu, 11 Dec 2025 10:57:55 -0500 Subject: [PATCH 2/2] Update top 5 community stars for November 2025 - Remove BestCodes from top 5 (previous winner) - Move Dawn C. Hayes to 4th place - Add Smyekh David-West as 5th place - BestCodes remains on leaderboard at rank 4 --- documentation/src/pages/community/data/november-2025.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/documentation/src/pages/community/data/november-2025.json b/documentation/src/pages/community/data/november-2025.json index a1bae3a5c424..c432b4aafb08 100644 --- a/documentation/src/pages/community/data/november-2025.json +++ b/documentation/src/pages/community/data/november-2025.json @@ -13,13 +13,13 @@ "name": "Oleg Šelajev", "handle": "shelajev" }, - { - "name": "BestCodes", - "handle": "The-Best-Codes" - }, { "name": "Dawn C. Hayes", "handle": "professordnyc" + }, + { + "name": "Smyekh David-West", + "handle": "Smyekh" } ], "teamStars": [],