diff --git a/src/renderRepoCard.js b/src/renderRepoCard.js
index c3e5a602..db2dbf5f 100644
--- a/src/renderRepoCard.js
+++ b/src/renderRepoCard.js
@@ -1,4 +1,9 @@
-const { kFormatter, encodeHTML, fallbackColor } = require("../src/utils");
+const {
+ kFormatter,
+ encodeHTML,
+ fallbackColor,
+ FlexLayout,
+} = require("../src/utils");
const icons = require("./icons");
const renderRepoCard = (repo, options = {}) => {
@@ -42,6 +47,31 @@ const renderRepoCard = (repo, options = {}) => {
`
: "";
+ const svgLanguage = `
+
+
+ ${langName}
+
+ `;
+
+ const svgStars =
+ stargazers.totalCount > 0 &&
+ `
+
+ ${totalStars}
+ `;
+
+ const svgForks =
+ totalForks > 0 &&
+ `
+
+ ${totalForks}
+ `;
+
return `