- added links to github, linkedin, gitea, and bside website - adjusted styling and added footer block
23 lines
1018 B
TypeScript
23 lines
1018 B
TypeScript
import Link from "next/link";
|
|
import React from "react";
|
|
export default function Navbar({}) {
|
|
return (
|
|
<div className="text-white w-full middle align-middle bg-black h-11">
|
|
<div className="h-full flex flex-col justify-center">
|
|
<div className="flex flex-row justify-between ml-2">
|
|
<div>
|
|
Okechi Onyeje
|
|
</div>
|
|
<div className="flex flex-row gap-4 mr-2">
|
|
<Link href="https://www.linkedin.com/in/okechi-onyeje-57129b9a/">LinkedIn</Link>
|
|
<span className="flex flex-row">
|
|
<Link href="https://github.com/oonyeje">Github</Link>/
|
|
<Link href="https://gitea.bsidesolutions.net/oonyeje">Gitea</Link>
|
|
</span>
|
|
{/* <Link href="https://bsidesol.com">BSide</Link> */}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}; |