diff --git a/surfsense_web/components/homepage/github-stars-badge.tsx b/surfsense_web/components/homepage/github-stars-badge.tsx
index e11d6ff2d..feee8ee33 100644
--- a/surfsense_web/components/homepage/github-stars-badge.tsx
+++ b/surfsense_web/components/homepage/github-stars-badge.tsx
@@ -4,6 +4,7 @@ import { IconBrandGithub } from "@tabler/icons-react";
import { motion, useMotionValue, useSpring } from "motion/react";
import * as React from "react";
import { cn } from "@/lib/utils";
+import { Skeleton } from "@/components/ui/skeleton";
// ---------------------------------------------------------------------------
// Per-digit scrolling wheel
@@ -277,12 +278,16 @@ function NavbarGitHubStars({
)}
>
-
+ {isLoading ? (
+
+ ) : (
+
+ )}
);
}