Foster Hangdaan
d19be7b112
This removes the About page and moves its contents to the README and footer.
52 lines
1.5 KiB
TypeScript
52 lines
1.5 KiB
TypeScript
export default function () {
|
|
const iconStyle = {
|
|
filter: "var(--filter-green)",
|
|
};
|
|
|
|
return (
|
|
<nav className="navbar">
|
|
<ul className="navbar-list">
|
|
<li className="navbar-list-item home">
|
|
<a href="/" title="Home">
|
|
<img
|
|
src="https://static.fosterhangdaan.com/icons/tabler-icons/v2.47.0/svg/home.svg"
|
|
className="icon"
|
|
style={iconStyle}
|
|
alt="home"
|
|
/>
|
|
</a>
|
|
</li>
|
|
<li className="navbar-list-item">
|
|
<a href="/blog/" title="Blog">
|
|
<img
|
|
src="https://static.fosterhangdaan.com/icons/tabler-icons/v2.47.0/svg/news.svg"
|
|
className="icon"
|
|
style={iconStyle}
|
|
alt="blog"
|
|
/>
|
|
</a>
|
|
</li>
|
|
<li className="navbar-list-item">
|
|
<a href="/resume/" title="Resume">
|
|
<img
|
|
src="https://static.fosterhangdaan.com/icons/tabler-icons/v2.47.0/svg/file-cv.svg"
|
|
className="icon"
|
|
style={iconStyle}
|
|
alt="resume"
|
|
/>
|
|
</a>
|
|
</li>
|
|
<li className="navbar-list-item">
|
|
<a href="/gpg-key/" title="GPG Key">
|
|
<img
|
|
src="https://static.fosterhangdaan.com/icons/tabler-icons/v2.47.0/svg/key.svg"
|
|
className="icon"
|
|
style={iconStyle}
|
|
alt="gpg key"
|
|
/>
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
);
|
|
}
|