Fix merge conflicts in HeaderNavigation component

Resolved merge conflicts in HeaderNavigation.tsx to integrate GitHub link functionality with existing navigation structure.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Clas Wen 2025-09-30 00:01:14 +08:00
parent 6d80272ef4
commit 99fa4948ec

View file

@ -82,6 +82,19 @@ export default function App() {
</Link>
</NavbarMenuItem>
))}
<NavbarItem>
<Link
color="foreground"
className="flex items-center gap-2 w-full py-1 font-semibold"
size="lg"
href="https://github.com/nbtca"
target="_blank"
rel="noopener noreferrer"
>
<img src="/src/pages/_assets/github-mark.svg" alt="GitHub" className="w-6 h-6" />
<span>Github</span>
</Link>
</NavbarItem>
</NavbarMenu>
</Navbar>
)