- add new window target for navbar links

This commit is contained in:
oonyeje 2023-11-27 21:46:12 -05:00
parent 99183d9162
commit 69d1a78c8d
2 changed files with 6 additions and 5 deletions

View File

@ -9,12 +9,12 @@ export default function Navbar({}) {
Okechi Onyeje Okechi Onyeje
</div> </div>
<div className="flex flex-row gap-4 mr-2"> <div className="flex flex-row gap-4 mr-2">
<Link href="https://www.linkedin.com/in/okechi-onyeje-57129b9a/">LinkedIn</Link> <Link href="https://www.linkedin.com/in/okechi-onyeje-57129b9a/" target="#">LinkedIn</Link>
<span className="flex flex-row"> <span className="flex flex-row">
<Link href="https://github.com/oonyeje">Github</Link>/ <Link href="https://github.com/oonyeje" target="#">Github</Link>/
<Link href="https://gitea.bsidesolutions.net/oonyeje">Gitea</Link> <Link href="https://gitea.bsidesolutions.net/oonyeje" target="#">Gitea</Link>
</span> </span>
{/* <Link href="https://bsidesol.com">BSide</Link> */} {/* <Link href="https://bsidesol.com" target="#">BSide</Link> */}
</div> </div>
</div> </div>
</div> </div>

View File

@ -6,7 +6,8 @@
"dev": "next dev", "dev": "next dev",
"build": "next build", "build": "next build",
"start": "next start", "start": "next start",
"lint": "next lint" "lint": "next lint",
"export": "next export"
}, },
"dependencies": { "dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.4.2", "@fortawesome/fontawesome-svg-core": "^6.4.2",