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 @@
<footer class="flex flex-col w-full gap-4 p-4 bg-gray-900">
<div class="flex gap-2">
<h1 class="text-xl">Gabriel Kaszewski</h1>
<span class="flex-1"></span>
<a href="https://github.com/GKaszewski" class="fa-brands fa-github"> </a>
<a
href="https://www.linkedin.com/in/gabriel-kaszewski-5344b3183"
class="fa-brands fa-linkedin"
>
</a>
</div>
<div class="flex gap-2 text-sm">
<p class="font-semibold">
&copy; Gabriel Kaszewski, 2024. All rights reserved.
</p>
<span class="flex-1"></span>
<a href="/projects"> Projects </a>
<a href="https://blog.gabrielkaszewski.dev/" target="_blank"> Blog </a>
</div>
</footer>

View File

@@ -0,0 +1,10 @@
<div class="flex flex-col gap-2 p-4 text-black bg-gray-100 rounded-lg">
<h4 class="text-2xl">
<span class="fas fa-user-circle"></span> {{ job.position }}
</h4>
<h5 class="text-xl font-light">
<span class="fas fa-building"></span> {{ job.company }}
</h5>
<p class="font-bold"><span class="fas fa-microchip"></span> Technologies</p>
<div class="flex flex-wrap gap-2"></div>
</div>

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>