Improve nav and other changes

This commit is contained in:
Henry Hiles 2023-06-01 14:20:53 -04:00
parent 6716a135eb
commit 417537c763
4 changed files with 49 additions and 59 deletions

View file

@ -4,24 +4,21 @@ import styles from "../styles/Nav.module.css"
---
<nav class={styles.nav} aria-expanded="true">
<ul class={styles.links}>
<li>
<a href="/#">Home</a>
</li>
<li>
<a href="/#portfolio">Projects</a>
</li>
<li>
<a href="/#about">About Me</a>
</li>
<li>
<a
target="_blank"
rel="noreferrer"
href="https://github.com/Henry-Hiles"
>
<Icon name="mdi:github" />
</a>
</li>
</ul>
<section>
<a href="/" id={styles.logo}
><img src="/images/logo.svg" alt="Henry Hiles" /></a
>
<a href="/#">Home</a>
<a href="/#portfolio">Projects</a>
<a href="/#about">About Me</a>
</section>
<section>
<a
target="_blank"
rel="noreferrer"
href="https://github.com/Henry-Hiles"
>
<Icon name="mdi:github" />
</a>
</section>
</nav>