diff --git a/src/app/(app)/dashboard/page.tsx b/src/app/(app)/dashboard/page.tsx index e3be321..1dc4c7c 100644 --- a/src/app/(app)/dashboard/page.tsx +++ b/src/app/(app)/dashboard/page.tsx @@ -46,6 +46,7 @@ export default async function DashboardPage() { const xp = profile?.xp ?? 0; const level = profile?.level ?? 0; + const isNewUser = xp === 0 && (profile?.github_total_merges ?? 0) === 0; const { needed, next } = xpToNextLevel(xp); const nextLevel = next ?? level; @@ -148,6 +149,17 @@ export default async function DashboardPage() {