@@ -62,7 +64,7 @@ export default function IndexPage() {
)}
>
- GitHub
+ GitHub {stars || "2.3k"}+
diff --git a/apps/www/app/(app)/themes/cards/create-account.tsx b/apps/www/app/(app)/themes/cards/create-account.tsx
index e3743ee..1b40ea9 100644
--- a/apps/www/app/(app)/themes/cards/create-account.tsx
+++ b/apps/www/app/(app)/themes/cards/create-account.tsx
@@ -1,5 +1,6 @@
"use client"
+import { ghStars } from "@/lib/fetchGhStars"
import { Button } from "@/components/ui/button"
import { Input } from "@/components/ui/input"
import { Label } from "@/components/ui/label"
@@ -14,6 +15,8 @@ import {
} from "@/registry/default/ui/texture-card"
export function CardsCreateAccount() {
+ const stars = ghStars()
+
return (
@@ -29,6 +32,7 @@ export function CardsCreateAccount() {