continue re-design

This commit is contained in:
Developers Digest
2025-09-05 13:06:17 -04:00
parent b96d048dbd
commit 836b085f75
270 changed files with 32269 additions and 5182 deletions
@@ -0,0 +1,19 @@
"use client";
import Button from "@/components/ui/shadcn/button";
import GithubIcon from "./_svg/GithubIcon";
export default function HeaderGithubClient() {
return (
<a
className="contents"
href="https://github.com/firecrawl/firecrawl"
target="_blank"
>
<Button variant="tertiary">
<GithubIcon />
21.5k
</Button>
</a>
);
}