diff options
| author | schererleander <leander@schererleander.de> | 2026-05-24 22:55:25 +0200 |
|---|---|---|
| committer | schererleander <leander@schererleander.de> | 2026-05-24 22:55:25 +0200 |
| commit | 0c6b390f9bced9bb07120cd8ece763511f632308 (patch) | |
| tree | 96fa81e940aeb72f097eaf1d5151cdf03039143a /components | |
| parent | 9d22c8c604d90a5caa7aefc61bfe2ad7d9f54dcc (diff) | |
Diffstat (limited to 'components')
| -rw-r--r-- | components/header.tsx | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/components/header.tsx b/components/header.tsx index f447677..d00e269 100644 --- a/components/header.tsx +++ b/components/header.tsx @@ -1,6 +1,7 @@ import Link from "next/link" -import { PawPrint, Github, Mail } from "lucide-react" +import { PawPrint, Mail } from "lucide-react" import { Button } from "@/components/ui/button" +import Image from "next/image" export function Header() { return ( @@ -22,7 +23,13 @@ export function Header() { <div className="flex items-center gap-2"> <Button asChild variant="ghost" size="icon"> <Link href="https://github.com/schererleander" target="_blank" aria-label="Github"> - <Github className="h-4 w-4" /> + <Image + src="/GitHub_Invertocat_Black.svg" + alt="Github" + width={16} + height={16} + className="dark:invert" + /> </Link> </Button> <Button asChild variant="ghost" size="icon"> |
