diff --git a/src/components/footer.tsx b/src/components/footer.tsx index 77cf962..8387546 100644 --- a/src/components/footer.tsx +++ b/src/components/footer.tsx @@ -8,10 +8,10 @@ export function Footer() { Made by{" "} - @ahmedkhaleel04 + Ahmed Khaleel diff --git a/src/components/header.tsx b/src/components/header.tsx index 231dd15..b83247a 100644 --- a/src/components/header.tsx +++ b/src/components/header.tsx @@ -18,7 +18,7 @@ export function Header() { }, []); const formatStarCount = (count: number | null) => { - if (!count) return "9.0k"; // Default to 2.0k if count is null (it can only go up from here) + if (!count) return "10.0k"; if (count >= 1000) { return `${(count / 1000).toFixed(1)}k`; }