init commit
This commit is contained in:
20
assets/views/website/components/footer.html
Normal file
20
assets/views/website/components/footer.html
Normal 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">
|
||||
© 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>
|
10
assets/views/website/components/job.html
Normal file
10
assets/views/website/components/job.html
Normal 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>
|
20
assets/views/website/components/navbar.html
Normal file
20
assets/views/website/components/navbar.html
Normal 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>
|
Reference in New Issue
Block a user