Files
Portfolio/app/components/Nav.tsx
2026-01-22 20:55:07 +00:00

22 lines
593 B
TypeScript
Executable File

import Image from "next/image";
import styles from "./components.module.css"
export default function Nav() {
return (
<div className={styles.nav}>
<a className={styles.icon}>
<img src="/img/icons/folder.png" style={{height: "14vh"}}></img>
Projects
</a>
<a className={styles.icon}>
<img src="/img/icons/info.png" style={{height: "14vh"}}></img>
Info
</a>
<a className={styles.icon}>
<img src="/img/icons/contact.png" style={{height: "14vh"}}></img>
Contact
</a>
</div>
);
}