diff --git a/components/utils/Footer.tsx b/components/utils/Footer.tsx
index 8b66c7c..283de3d 100644
--- a/components/utils/Footer.tsx
+++ b/components/utils/Footer.tsx
@@ -25,6 +25,9 @@ export const Footer = () => {
+
+ {"Source Code"}
+
{"Sponsor"}
diff --git a/components/utils/TagBadge.tsx b/components/utils/TagBadge.tsx
index 1075795..d3a1c0c 100644
--- a/components/utils/TagBadge.tsx
+++ b/components/utils/TagBadge.tsx
@@ -3,7 +3,7 @@ import Link from "next/link";
export const TagBadge = (props: { name: string; size: "sm" | "md"; count?: number }) => {
return (
-
+
{`${props.name}${props.count ? ` (${props.count})` : ""}`}