We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fde5a6a commit 5bb4fbdCopy full SHA for 5bb4fbd
components/home-page-mobile-footer.tsx
@@ -1,7 +1,7 @@
1
'use client'
2
3
import { Button } from '@/components/ui/button'
4
-import { Star } from 'lucide-react'
+import { GitHubIcon } from '@/components/icons/github-icon'
5
import { VERCEL_DEPLOY_URL } from '@/lib/constants'
6
7
const GITHUB_REPO_URL = 'https://github.com/vercel-labs/coding-agent-template'
@@ -22,7 +22,7 @@ export function HomePageMobileFooter({ initialStars = 1056 }: HomePageMobileFoot
22
rel="noopener noreferrer"
23
className="flex items-center justify-center gap-2"
24
>
25
- <Star className="h-4 w-4" />
+ <GitHubIcon className="h-4 w-4" />
26
<span className="text-sm font-medium">{initialStars.toLocaleString()}</span>
27
</a>
28
</Button>
0 commit comments