diff --git a/src/components/EmptyMergedPRs.tsx b/src/components/EmptyMergedPRs.tsx new file mode 100644 index 000000000..ca87c4679 --- /dev/null +++ b/src/components/EmptyMergedPRs.tsx @@ -0,0 +1,31 @@ +import { GitPullRequest } from "lucide-react"; + +interface EmptyMergedPRsProps { + username?: string; +} + +export function EmptyMergedPRs({ username }: EmptyMergedPRsProps) { + return ( +
+ {username + ? `${username} hasn't had any PRs merged yet. Start contributing to open source to see your merged PRs here.` + : "No merged pull requests to display. Once you start contributing, your merged PRs will appear here."} +
+ + Explore open source projects → + +