Initial commit

This commit is contained in:
DavidOnTop 2025-05-07 23:06:37 +02:00
commit ce6b494242
Signed by: DavidOnTop
GPG key ID: 8D3E9A75E3E13D89
21 changed files with 4858 additions and 0 deletions

35
src/components/Nav.astro Normal file
View file

@ -0,0 +1,35 @@
<div
class="z-[5] flex justify-around items-center bg-bckgl fixed top-0 h-12 w-full"
>
<div>
<img src="/logo-transparent.png" alt="DavidOnTop" class="max-h-10" />
</div>
<div>
<a href="/" class="hover:text-accent btn btn-ghost !min-h-8 h-1 px-3"
>Home</a
>
<a
href="/about"
class="hover:text-accent btn btn-ghost !min-h-8 h-1 px-3">About</a
>
<a
href="https://git.davidon.top"
class="hover:text-accent btn btn-ghost !min-h-8 h-1 px-3"
>Projects</a
>
</div>
<div class="dropdown dropdown-hover dropdown-end">
<div
role="button"
tabindex="-1"
class="text-white btn btn-ghost !min-h-8 h-1 px-3"
>
Contact Me
</div>
<div tabindex="-1" class="menu dropdown-content z-10 pl-10 pb-7">
<ul tabindex="-1" class="shadow rounded-box bg-bckgl mt-1 p-1">
<li><a href="mailto:me@davidon.top">Mail</a></li>
</ul>
</div>
</div>
</div>