docs: Community All-Stars Spotlight November 2025, CodeTV Hackathon edition (#6070)

Co-authored-by: Tania Chakraborty <tchakraborty@block.xyz>
This commit is contained in:
taniandjerry
2025-12-11 11:19:51 -05:00
committed by GitHub
parent 090e33ce60
commit 9366a304c6
3 changed files with 61 additions and 3 deletions
@@ -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"
}
"defaultMonth": "november-2025"
}
@@ -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 }
]
}
+3 -1
View File
@@ -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 {
</main>
</Layout>
);
}
}