mirror of
https://github.com/m1ngsama/FUJI.git
synced 2025-12-24 10:51:27 +00:00
Merge pull request #106 from wen-templari/fix-header-github-mark
fix header github mark
This commit is contained in:
commit
46219e8ba6
2 changed files with 2 additions and 1 deletions
|
|
@ -2,6 +2,7 @@ import { useState } from "react"
|
|||
import { Navbar, NavbarBrand, NavbarContent, NavbarItem, NavbarMenuToggle, NavbarMenu, NavbarMenuItem, Link } from "@heroui/react"
|
||||
import { SITE_TITLE } from "../../consts"
|
||||
import CALogoWhite from "./assets/CA-logo-white.png"
|
||||
import GithubMark from "./assets/github-mark.svg"
|
||||
|
||||
export default function App() {
|
||||
const [isMenuOpen, setIsMenuOpen] = useState(false)
|
||||
|
|
@ -57,7 +58,7 @@ export default function App() {
|
|||
}
|
||||
<NavbarItem>
|
||||
<Link href="https://github.com/nbtca" target="_blank" rel="noopener noreferrer" className="flex items-center">
|
||||
<img src="/src/pages/_assets/github-mark.svg" alt="GitHub" className="w-6 h-6" />
|
||||
<img src={GithubMark.src} alt="GitHub" className="w-6 h-6" />
|
||||
</Link>
|
||||
</NavbarItem>
|
||||
</NavbarContent>
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 963 B After Width: | Height: | Size: 963 B |
Loading…
Reference in a new issue