Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
65 changes: 65 additions & 0 deletions documentation/src/pages/community/data/august-2025.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
{
"month": "August 2025",
"communityStars": [
{
"name": "Abhijay007",
"handle": "Abhijay007"
},
{
"name": "johnlanda",
"handle": "johnlanda"
},
{
"name": "Developerayo",
"handle": "Developerayo"
},
{
"name": "cgwalters",
"handle": "cgwalters"
},
{
"name": "par5ul1",
"handle": "par5ul1"
}
],
"teamStars": [
{
"name": "lifeizhou-ap",
"handle": "lifeizhou-ap"
},
{
"name": "tlongwell-block",
"handle": "tlongwell-block"
},
{
"name": "GaryZhous",
"handle": "GaryZhous"
},
{
"name": "aharvard",
"handle": "aharvard"
},
{
"name": "tiensi",
"handle": "tiensi"
}
],
"leaderboard": [
{ "handle": "lifeizhou-ap", "rank": 1, "medal": "🥇" },
{ "handle": "Abhijay007", "rank": 2, "medal": "🥈" },
{ "handle": "johnlanda", "rank": 3, "medal": "🥉" },
{ "handle": "Developerayo", "rank": 4 },
{ "handle": "cgwalters", "rank": 5 },
{ "handle": "tlongwell-block", "rank": 6 },
{ "handle": "par5ul1", "rank": 7 },
{ "handle": "GaryZhous", "rank": 8 },
{ "handle": "aharvard", "rank": 9 },
{ "handle": "ayax79", "rank": 10 },
{ "handle": "codefromthecrypt", "rank": 11 },
{ "handle": "tiensi", "rank": 12 },
{ "handle": "shellz-n-stuff", "rank": 13 },
{ "handle": "JJSwigut", "rank": 14 },
{ "handle": "exitcode0", "rank": 15 },
{ "handle": "inmzhang", "rank": 16 }
]
}
12 changes: 11 additions & 1 deletion documentation/src/pages/community/data/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,17 @@
"id": "june-2025",
"display": "June 2025",
"file": "june-2025.json"
},
{
"id": "july-2025",
"display": "July 2025",
"file": "july-2025.json"
},
{
"id": "august-2025",
"display": "August 2025",
"file": "august-2025.json"
}
],
"defaultMonth": "june-2025"
"defaultMonth": "august-2025"
}
70 changes: 70 additions & 0 deletions documentation/src/pages/community/data/july-2025.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
{
"month": "July 2025",
"communityStars": [
{
"name": "The-Best-Codes",
"handle": "The-Best-Codes"
},
{
"name": "rolznz",
"handle": "rolznz"
},
{
"name": "toyamagu-2021",
"handle": "toyamagu-2021"
},
{
"name": "dcieslak19973",
"handle": "dcieslak19973"
},
{
"name": "shelajev",
"handle": "shelajev"
}
],
"teamStars": [
{
"name": "cloud-on-prem",
"handle": "cloud-on-prem"
},
{
"name": "jsibbison-square",
"handle": "jsibbison-square"
},
{
"name": "glenn-sq",
"handle": "glenn-sq"
},
{
"name": "aharvard",
"handle": "aharvard"
},
{
"name": "chaitanyarahalkar",
"handle": "chaitanyarahalkar"
}
],
"leaderboard": [
{ "handle": "The-Best-Codes", "rank": 1, "medal": "🥇" },
{ "handle": "cloud-on-prem", "rank": 2, "medal": "🥈" },
{ "handle": "jsibbison-square", "rank": 3, "medal": "🥉" },
{ "handle": "glenn-sq", "rank": 4 },
{ "handle": "aharvard", "rank": 5 },
{ "handle": "rolznz", "rank": 6 },
{ "handle": "toyamagu-2021", "rank": 7 },
{ "handle": "dcieslak19973", "rank": 8 },
{ "handle": "shelajev", "rank": 9 },
{ "handle": "necaris", "rank": 10 },
{ "handle": "Jay4242", "rank": 11 },
{ "handle": "Developerayo", "rank": 12 },
{ "handle": "uddhav", "rank": 13 },
{ "handle": "mr-brobot", "rank": 14 },
{ "handle": "sfc-gh-twhite", "rank": 15 },
{ "handle": "GaryZhous", "rank": 16 },
{ "handle": "chaitanyarahalkar", "rank": 17 },
{ "handle": "simonsickle", "rank": 18 },
{ "handle": "LordMelkor", "rank": 19 },
{ "handle": "cgwalters", "rank": 20 },
{ "handle": "alexrrouse", "rank": 21 }
]
}
4 changes: 4 additions & 0 deletions documentation/src/pages/community/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,16 @@ 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";
import july2025Data from "./data/july-2025.json";
import august2025Data from "./data/august-2025.json";

// Create a data map for easy access
const communityDataMap = {
"april-2025": april2025Data,
"may-2025": may2025Data,
"june-2025": june2025Data,
"july-2025": july2025Data,
"august-2025": august2025Data,
};

function UpcomingEventsSection() {
Expand Down