File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ export function renderGithubCard(items, type) {
73
73
} else if ( type === 'code' ) {
74
74
html += `
75
75
<a href="${ item . html_url } " target="_blank" rel="noopener noreferrer" class="repo-card rounded-xl p-6 shadow-md block hover:bg-gray-700 transition-colors duration-200">
76
- <img src=" ${ item . avatar_url } " alt="Avatar" class="w-12 h-12 rounded-full object-cover" / >
76
+ <i class="fa-solid fa-code-branch text-3xl"></i >
77
77
<h3 class="text-lg font-semibold text-white truncate">${ item . name } </h3>
78
78
<p class="text-gray-400 text-sm">Repo: ${ item . repository . full_name } </p>
79
79
<p class="text-gray-500 text-xs">Path: ${ item . path } </p>
@@ -83,7 +83,7 @@ export function renderGithubCard(items, type) {
83
83
} else if ( type === 'issue' ) {
84
84
html += `
85
85
<a href="${ item . html_url } " target="_blank" rel="noopener noreferrer" class="repo-card rounded-xl p-6 shadow-md block hover:bg-gray-700 transition-colors duration-200">
86
- <img src=" ${ item . avatar_url } " alt="Avatar" class="w-12 h-12 rounded-full object-cover" / >
86
+ <i class="fa-solid fa-circle-question text-3xl"></i >
87
87
<h3 class="text-lg font-semibold text-white truncate">${ item . title } </h3>
88
88
<p class="text-gray-400 text-sm">Repo: ${ item . repository_url . split ( '/' ) . slice ( - 2 ) . join ( '/' ) } </p>
89
89
<p class="text-gray-500 text-xs">Status: ${ item . state } </p>
You can’t perform that action at this time.
0 commit comments