nelle-observer/astro/src/components/Header.astro
2024-08-18 22:09:16 -06:00

31 lines
541 B
Text

---
---
<!--
onmouseover="PlaySound('hoverSound')"
onmouseout="StopSound('hoverSound')" -->
<nav class="menu center">
<button
class="custom-btn btn-1"
type="button"
onclick="location.href='/'"
>
<span>Home</span>
</button>
<!--
<button
class="custom-btn btn-1"
type="button"
onclick="location.href='/projects'"
>
<span>Projects</span>
</button>
-->
<button
class="custom-btn btn-1"
type="button"
onclick="location.href='/blog'"
>
<span>Blog</span>
</button>
</nav>