Skip to content

Commit 4e26fe5

Browse files
Fix labels for stats cards in about page
1 parent 107d43e commit 4e26fe5

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/app/about/page.jsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,8 +141,10 @@ export default function About() {
141141
{/* Stats Cards */}
142142
{[
143143
{ value: stats.years, label: 'years' },
144-
{ value: stats.projects, label: 'repos' },
145-
{ value: `${stats.contributors}+`, label: 'community members' }
144+
{ value: stats.projects, label: 'projects' },
145+
{ value: 203, label: 'repos' },
146+
{ value: `${stats.contributors}+`, label: 'contributors' },
147+
{ value: '7500+', label: 'community members' }
146148
].map((item, index) => (
147149
<motion.div
148150
key={index}

0 commit comments

Comments
 (0)