init commit

This commit is contained in:
2024-10-30 02:02:12 +01:00
commit ea4942bda1
93 changed files with 9909 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
<nav
class="fixed z-20 flex flex-col items-center justify-center w-full p-4 bg-gray-900 shadow-2xl md:flex-row"
id="navbar"
>
<a href="/" class="text-2xl"> Gabriel Kaszewski </a>
<span class="flex-1"></span>
<div class="flex gap-4">
<a href="/" class="text-lg"> Home </a>
<a href="/projects" class="text-lg"> Projects </a>
<a
href="https://blog.gabrielkaszewski.dev/"
class="text-lg"
target="_blank"
>
Blog
</a>
<a href="/contact" class="text-lg"> Contact </a>
<a href="/about" class="text-lg"> About </a>
</div>
</nav>