From ff55e073086be9c508a08a520f770f959d0669df Mon Sep 17 00:00:00 2001 From: SonalMittal-14 Date: Wed, 27 May 2026 21:16:52 +0530 Subject: [PATCH] fix: zero repo stats fallback --- src/app/page.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 5c5148b5..1d3e6d82 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -59,11 +59,11 @@ async function fetchRepoStats(): Promise { }; } catch { return { - stars: 40, - forks: 160, - openIssues: 307, - contributorCount: 30, - goodFirstIssues: 36, + stars: 0, + forks: 0, + openIssues: 0, + contributorCount: 0, + goodFirstIssues: 0, contributors: [], }; }