diff --git a/frontend/src/components/animate-ui/components/buttons/github-stars.tsx b/frontend/src/components/animate-ui/components/buttons/github-stars.tsx index c32574c4b..b22d55176 100644 --- a/frontend/src/components/animate-ui/components/buttons/github-stars.tsx +++ b/frontend/src/components/animate-ui/components/buttons/github-stars.tsx @@ -2,6 +2,7 @@ import type { VariantProps } from "class-variance-authority"; import { cva } from "class-variance-authority"; import { StarIcon } from "lucide-react"; +import Link from "next/link"; import type { ButtonProps as ButtonPrimitiveProps } from "@/components/animate-ui/primitives/buttons/button"; import type { GithubStarsProps } from "@/components/animate-ui/primitives/animate/github-stars"; @@ -71,30 +72,37 @@ function GitHubStarsButton({ ...props }: GitHubStarsButtonProps) { return ( - - - - - - - - - + + + + + + + + + + ); }