import Link from 'next/link'; import { FiExternalLink } from 'react-icons/fi'; import type { RepoSummary } from '@/lib/github'; import { getLanguageColor } from '@/lib/github-lang-colors'; interface RepoCardProps { repo: RepoSummary; animationDelay?: number; } export function RepoCard({ repo, animationDelay = 0 }: RepoCardProps) { const langColor = getLanguageColor(repo.language); return (
{repo.description}
)}