diff --git a/documentation/src/pages/community/data/config.json b/documentation/src/pages/community/data/config.json index 0b39f7c294ce..78eb3571dd6f 100644 --- a/documentation/src/pages/community/data/config.json +++ b/documentation/src/pages/community/data/config.json @@ -24,7 +24,12 @@ "id": "august-2025", "display": "August 2025", "file": "august-2025.json" + }, + { + "id": "september-2025", + "display": "September 2025", + "file": "september-2025.json" } ], - "defaultMonth": "august-2025" + "defaultMonth": "september-2025" } \ No newline at end of file diff --git a/documentation/src/pages/community/data/september-2025.json b/documentation/src/pages/community/data/september-2025.json new file mode 100644 index 000000000000..29c90baa65c2 --- /dev/null +++ b/documentation/src/pages/community/data/september-2025.json @@ -0,0 +1,65 @@ +{ + "month": "September 2025", + "communityStars": [ + { + "name": "Abhijay Jain", + "handle": "Abhijay007" + }, + { + "name": "Sings to Bees on Wednesdays", + "handle": "sings-to-bees-on-wednesdays" + }, + { + "name": "Aryan Sharma", + "handle": "ARYPROGRAMMER" + }, + { + "name": "Jim Alateras", + "handle": "jalateras" + }, + { + "name": "Better Boy", + "handle": "Better-Boy" + } + ], + "teamStars": [ + { + "name": "Kvadratni", + "handle": "Kvadratni" + }, + { + "name": "William Pfleger", + "handle": "wpfleger96" + }, + { + "name": "Dhanji Prasanna", + "handle": "dhanji" + }, + { + "name": "Exit Code 0", + "handle": "exitcode0" + }, + { + "name": "Dorien Koelemeijer", + "handle": "dorien-koelemeijer" + } + ], + "leaderboard": [ + { "handle": "Abhijay007", "rank": 1, "medal": "🥇" }, + { "handle": "jalateras", "rank": 2, "medal": "🥈" }, + { "handle": "Kvadratni", "rank": 3, "medal": "🥉" }, + { "handle": "wpfleger96", "rank": 4 }, + { "handle": "dhanji", "rank": 5 }, + { "handle": "exitcode0", "rank": 6 }, + { "handle": "dorien-koelemeijer", "rank": 7 }, + { "handle": "sings-to-bees-on-wednesdays", "rank": 8 }, + { "handle": "ARYPROGRAMMER", "rank": 9 }, + { "handle": "spencrmartin", "rank": 10 }, + { "handle": "Better-Boy", "rank": 11 }, + { "handle": "finn-block", "rank": 12 }, + { "handle": "johnlanda", "rank": 13 }, + { "handle": "aegntic", "rank": 14 }, + { "handle": "Anudhyan", "rank": 15 }, + { "handle": "eyelight", "rank": 16 } + ] +} diff --git a/documentation/src/pages/community/index.tsx b/documentation/src/pages/community/index.tsx index b4bda184081c..c96dd60d2838 100644 --- a/documentation/src/pages/community/index.tsx +++ b/documentation/src/pages/community/index.tsx @@ -11,6 +11,7 @@ import may2025Data from "./data/may-2025.json"; import june2025Data from "./data/june-2025.json"; import july2025Data from "./data/july-2025.json"; import august2025Data from "./data/august-2025.json"; +import september2025Data from "./data/september-2025.json"; import communityContentData from "./data/community-content.json"; // Create a data map for easy access @@ -20,6 +21,7 @@ const communityDataMap = { "june-2025": june2025Data, "july-2025": july2025Data, "august-2025": august2025Data, + "september-2025": september2025Data, }; function UpcomingEventsSection() {