first commit
This commit is contained in:
21
app/components/Nav.tsx
Executable file
21
app/components/Nav.tsx
Executable 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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user