diff --git a/documentation/src/pages/community/data/config.json b/documentation/src/pages/community/data/config.json index 5fc8a6a86e30..36126c257541 100644 --- a/documentation/src/pages/community/data/config.json +++ b/documentation/src/pages/community/data/config.json @@ -9,7 +9,12 @@ "id": "may-2025", "display": "May 2025", "file": "may-2025.json" + }, + { + "id": "june-2025", + "display": "June 2025", + "file": "june-2025.json" } ], - "defaultMonth": "may-2025" + "defaultMonth": "june-2025" } \ No newline at end of file diff --git a/documentation/src/pages/community/data/june-2025.json b/documentation/src/pages/community/data/june-2025.json new file mode 100644 index 000000000000..f2d7cddb14d3 --- /dev/null +++ b/documentation/src/pages/community/data/june-2025.json @@ -0,0 +1,71 @@ +{ + "month": "June 2025", + "communityStars": [ + { + "name": "Audi_Guy", + "handle": "TBD" + }, + { + "name": "jwoehr", + "handle": "jwoehr" + }, + { + "name": "harkamals", + "handle": "harkamals" + }, + { + "name": "SalvatoreT", + "handle": "SalvatoreT" + }, + { + "name": "sfc-gh-twhite", + "handle": "sfc-gh-twhite" + } + ], + "teamStars": [ + { + "name": "jackjackbits", + "handle": "jackjackbits" + }, + { + "name": "GaryZhous", + "handle": "GaryZhous" + }, + { + "name": "AaronGoldsmith", + "handle": "AaronGoldsmith" + }, + { + "name": "wpfleger96", + "handle": "wpfleger96" + }, + { + "name": "joahg", + "handle": "joahg" + } + ], + "leaderboard": [ + { "handle": "jackjackbits", "rank": 1, "medal": "🥇" }, + { "handle": "SalvatoreT", "rank": 2, "medal": "🥈" }, + { "handle": "GaryZhous", "rank": 3, "medal": "🥉" }, + { "handle": "AaronGoldsmith", "rank": 4 }, + { "handle": "wpfleger96", "rank": 5 }, + { "handle": "joahg", "rank": 6 }, + { "handle": "The-Best-Codes", "rank": 7 }, + { "handle": "tiensi", "rank": 8 }, + { "handle": "sfc-gh-twhite", "rank": 9 }, + { "handle": "dhanji", "rank": 10 }, + { "handle": "danielcorin", "rank": 11 }, + { "handle": "toyamagu-2021", "rank": 12 }, + { "handle": "chaitanyarahalkar", "rank": 13 }, + { "handle": "rsb-23", "rank": 14 }, + { "handle": "sambradbury", "rank": 15 }, + { "handle": "charlie-lobo", "rank": 16 }, + { "handle": "alexrrouse", "rank": 17 }, + { "handle": "alexgleason", "rank": 18 }, + { "handle": "damienrj", "rank": 19 }, + { "handle": "Jay4242", "rank": 20 }, + { "handle": "blockbtheriault", "rank": 21 }, + { "handle": "btdeviant", "rank": 22 } + ] +} diff --git a/documentation/src/pages/community/index.tsx b/documentation/src/pages/community/index.tsx index cae956c59d75..b11836e764cf 100644 --- a/documentation/src/pages/community/index.tsx +++ b/documentation/src/pages/community/index.tsx @@ -8,11 +8,13 @@ import Heading from "@theme/Heading"; import communityConfig from "./data/config.json"; import april2025Data from "./data/april-2025.json"; import may2025Data from "./data/may-2025.json"; +import june2025Data from "./data/june-2025.json"; // Create a data map for easy access const communityDataMap = { "april-2025": april2025Data, "may-2025": may2025Data, + "june-2025": june2025Data, }; function UpcomingEventsSection() {