Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/components/Header.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Link } from "react-router-dom";
import { ThemeToggle } from "./ThemeToggle";
import { ChevronDown } from "lucide-react";
import { ChevronDown, Code2 } from "lucide-react";
import { useNavigate } from "react-router-dom";
import { useEffect } from "react";

Expand Down Expand Up @@ -72,7 +72,8 @@ export function Header() {
return (
<header className="py-6">
<div className="mx-auto flex w-full max-w-5xl flex-col gap-4 px-4 md:flex-row md:items-center md:justify-between">
<Link className="inline-flex text-primary" to="/">
<Link className="inline-flex items-center gap-2 text-primary" to="/">
<Code2 className="h-5 w-5 text-primary" />
<span className="font-semibold text-xs uppercase tracking-[0.3em]">
CHAINSQUAD
</span>
Expand Down