nelle-observer/astro/src/components/Header.astro

33 lines
601 B
Text
Raw Normal View History

2024-08-12 01:15:48 -06:00
---
2024-08-19 00:20:34 -06:00
2024-08-12 01:15:48 -06:00
---
<!--
onmouseover="PlaySound('hoverSound')"
onmouseout="StopSound('hoverSound')" -->
2024-08-19 00:20:34 -06:00
<section class="center nav">
<nav class="menu">
<button
class="custom-btn btn-1"
type="button"
onclick="location.href='/'">
<span>Home</span>
</button>
<!--
2024-08-12 01:15:48 -06:00
<button
class="custom-btn btn-1"
type="button"
onclick="location.href='/projects'"
>
<span>Projects</span>
</button>
2024-08-15 20:34:46 -06:00
-->
2024-08-19 00:20:34 -06:00
<button
class="custom-btn btn-1"
type="button"
onclick="location.href='/blog'">
<span>Blog</span>
</button>
</nav>
</section>