Add repo card component and GitHub language colors for projects page

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-02-13 21:45:45 +08:00
parent 27dc2db3ee
commit 8a4ecf9634
5 changed files with 147 additions and 53 deletions

43
lib/github-lang-colors.ts Normal file
View File

@@ -0,0 +1,43 @@
/**
* GitHub-style language colors for repo cards.
* Fallback: #94a3b8 (slate-400) for unknown languages.
*/
const LANG_COLORS: Record<string, string> = {
TypeScript: '#3178c6',
JavaScript: '#f1e05a',
Python: '#3572A5',
Rust: '#dea584',
Go: '#00ADD8',
Ruby: '#701516',
PHP: '#4F5D95',
Java: '#b07219',
Kotlin: '#A97BFF',
Swift: '#F05138',
C: '#555555',
'C++': '#f34b7d',
'C#': '#239120',
Shell: '#89e051',
HTML: '#e34c26',
CSS: '#563d7c',
Vue: '#41b883',
Svelte: '#ff3e00',
Dart: '#00B4AB',
Scala: '#c22d40',
Elixir: '#6e4a7e',
Lua: '#000080',
R: '#198CE7',
Markdown: '#083fa1',
YAML: '#cb171e',
JSON: '#292929',
};
const FALLBACK_COLOR = '#94a3b8';
/**
* Returns the GitHub-style hex color for a programming language.
* Unknown languages use a neutral slate fallback.
*/
export function getLanguageColor(lang: string | null): string {
if (!lang || !lang.trim()) return FALLBACK_COLOR;
return LANG_COLORS[lang] ?? FALLBACK_COLOR;
}

View File

@@ -27,8 +27,8 @@ function getGithubHeaders() {
/**
* Fetch all public repositories for the configured GitHub user.
* Returns an empty array on error instead of throwing, so the UI
* can render a graceful fallback.
* Excludes forked repositories. Returns an empty array on error instead of
* throwing, so the UI can render a graceful fallback.
*/
export async function fetchPublicRepos(usernameOverride?: string): Promise<RepoSummary[]> {
const username = usernameOverride || process.env.GITHUB_USERNAME;
@@ -56,16 +56,18 @@ export async function fetchPublicRepos(usernameOverride?: string): Promise<RepoS
const data = (await res.json()) as any[];
return data.map((repo) => ({
id: repo.id,
name: repo.name,
fullName: repo.full_name,
htmlUrl: repo.html_url,
description: repo.description,
language: repo.language,
stargazersCount: repo.stargazers_count,
updatedAt: repo.updated_at,
}));
return data
.filter((repo) => !repo.fork)
.map((repo) => ({
id: repo.id,
name: repo.name,
fullName: repo.full_name,
htmlUrl: repo.html_url,
description: repo.description,
language: repo.language,
stargazersCount: repo.stargazers_count,
updatedAt: repo.updated_at,
}));
} catch (error) {
console.error('Error while fetching GitHub repositories:', error);
return [];