mirror of
https://github.com/ershisan99/DevToysWeb.git
synced 2025-12-16 12:32:48 +00:00
46 lines
1.2 KiB
TypeScript
46 lines
1.2 KiB
TypeScript
import Link from "next/link";
|
|
|
|
import { siteConfig } from "@/config/site";
|
|
import { cn } from "@/lib/style";
|
|
import { icons } from "@/components/icons";
|
|
import { ThemeToggle } from "@/components/theme-toggle";
|
|
|
|
type Props = {
|
|
className?: string;
|
|
};
|
|
|
|
export function SiteHeader({ className }: Props) {
|
|
return (
|
|
<header className={cn("flex items-center justify-between px-4", className)}>
|
|
<div className="flex items-baseline gap-x-2.5">
|
|
<Link className="text-lg" href="/">
|
|
{siteConfig.name}
|
|
</Link>
|
|
<small className="text-xs">
|
|
web clone of{" "}
|
|
<a
|
|
className="text-link hover:underline"
|
|
href={siteConfig.links.devtoys}
|
|
target="_blank"
|
|
rel="noreferrer"
|
|
>
|
|
DevToys
|
|
</a>
|
|
</small>
|
|
</div>
|
|
<div className="flex gap-x-1">
|
|
<a
|
|
className="group h-10 w-10 rounded-md p-2"
|
|
href={siteConfig.links.github}
|
|
target="_blank"
|
|
rel="noreferrer"
|
|
>
|
|
<icons.GitHub className="group-hover:opacity-70" />
|
|
<span className="sr-only">GitHub</span>
|
|
</a>
|
|
<ThemeToggle />
|
|
</div>
|
|
</header>
|
|
);
|
|
}
|