frontpage/components/Blog/Navigation.tsx

28 lines
1.0 KiB
TypeScript
Raw Normal View History

2022-10-03 01:19:43 +02:00
/* eslint-disable @next/next/no-img-element */
2022-09-30 16:14:30 +02:00
import type { NextPage } from "next";
2022-10-03 01:19:43 +02:00
import Link from "next/link";
2022-10-16 00:05:44 +02:00
import { Terminal, Sun, Moon } from "phosphor-react";
2022-10-16 15:59:08 +02:00
import ThemeSwitch from "./ThemeSwitch";
2022-10-16 00:05:44 +02:00
2022-10-03 01:19:43 +02:00
import styles from "../../styles/Blog/Navigation.module.scss";
2022-09-30 16:14:30 +02:00
const Navigation: NextPage<{}> = () => {
2022-10-03 01:19:43 +02:00
return <nav className={styles.navigation}>
2022-10-08 14:07:56 +02:00
<Link href={"/"}>
2022-10-16 00:05:44 +02:00
<a className={`nostyle ${styles.imgContainer}`}>
2022-10-08 14:07:56 +02:00
<picture>
<source srcSet="/icon.png" type="image/png" />
<img src="/icon.png" alt={"Website icon, a red eye"} className={styles.logo} />
</picture>
</a>
2022-10-03 01:19:43 +02:00
</Link>
2022-10-16 00:05:44 +02:00
<div className={styles.navLink}><Link href={"/"}><a className="nostyle">Projects</a></Link></div>
<div className={styles.navLink}><Link href={"/"}><a className="nostyle">About me</a></Link></div>
<div className={styles.spacer}></div>
<Terminal size={"1.5em"} />
2022-10-16 15:59:08 +02:00
<ThemeSwitch />
2022-09-30 19:23:14 +02:00
</nav>;
2022-09-30 16:14:30 +02:00
};
export default Navigation;