Skip to content
Open
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
2 changes: 1 addition & 1 deletion src/app/user/[username]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default async function Home(props: {
<h1 className="text-5xl font-semibold tracking-tighter">
GitHub Stats for&nbsp;
<a
href={`https://github.com/${params.username}`}
href={`https://githubcard.com/${params.username}`}
Copy link

Copilot AI Dec 28, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This change is incorrect. GitHub has not migrated profile URLs to githubcard.com. The correct domain for GitHub user profiles remains github.com. Changing this URL will break the profile link functionality, as githubcard.com is not an official GitHub domain. The original URL should be restored.

Suggested change
href={`https://githubcard.com/${params.username}`}
href={`https://github.com/${params.username}`}

Copilot uses AI. Check for mistakes.
target="blank"
rel="noopener noreferrer"
className="underline"
Expand Down