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..c432b4aafb08 --- /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": "Dawn C. Hayes", + "handle": "professordnyc" + }, + { + "name": "Smyekh David-West", + "handle": "Smyekh" + } + ], + "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 +}