mirror of
https://github.com/m1ngsama/FUJI.git
synced 2025-12-25 02:56:38 +00:00
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:
parent
6d80272ef4
commit
99fa4948ec
1 changed files with 13 additions and 0 deletions
|
|
@ -82,6 +82,19 @@ export default function App() {
|
||||||
</Link>
|
</Link>
|
||||||
</NavbarMenuItem>
|
</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>
|
</NavbarMenu>
|
||||||
</Navbar>
|
</Navbar>
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue