first commit

This commit is contained in:
2026-01-22 20:55:07 +00:00
parent a28c9ddc97
commit 278f821328
40 changed files with 8615 additions and 0 deletions

21
app/components/Nav.tsx Executable file
View File

@@ -0,0 +1,21 @@
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>
);
}