- Updated footer to include an Itch.io link and improved SVG formatting. - Modified index.html to introduce a Steam preview iframe and refined introductory text. - Enhanced project-item.html for better layout and added glass effect styles. - Updated chip.html to include glass effect styling. - Adjusted tailwind.config.js to extend theme with new colors, gradients, border radius, and box shadow. - Updated package.json to use the latest versions of tailwindcss-motion and @tailwindcss/typography. - Changed bun.lockb permissions for better compatibility.
81 lines
2.5 KiB
HTML
81 lines
2.5 KiB
HTML
<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 title="github" href="https://github.com/GKaszewski">
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
width="24"
|
|
height="24"
|
|
viewBox="0 0 24 24"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
stroke-width="2"
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
class="lucide lucide-github"
|
|
>
|
|
<path
|
|
d="M15 22v-4a4.8 4.8 0 0 0-1-3.5c3 0 6-2 6-5.5.08-1.25-.27-2.48-1-3.5.28-1.15.28-2.35 0-3.5 0 0-1 0-3 1.5-2.64-.5-5.36-.5-8 0C6 2 5 2 5 2c-.3 1.15-.3 2.35 0 3.5A5.403 5.403 0 0 0 4 9c0 3.5 3 5.5 6 5.5-.39.49-.68 1.05-.85 1.65-.17.6-.22 1.23-.15 1.85v4"
|
|
/>
|
|
<path d="M9 18c-4.51 2-5-2-7-2" />
|
|
</svg>
|
|
</a>
|
|
<a
|
|
title="linkedin"
|
|
href="https://www.linkedin.com/in/gabriel-kaszewski-5344b3183"
|
|
>
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
width="24"
|
|
height="24"
|
|
viewBox="0 0 24 24"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
stroke-width="2"
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
class="lucide lucide-linkedin"
|
|
>
|
|
<path
|
|
d="M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z"
|
|
/>
|
|
<rect width="4" height="12" x="2" y="9" />
|
|
<circle cx="4" cy="4" r="2" />
|
|
</svg>
|
|
</a>
|
|
<a title="itch.io" href="https://gabrielkaszewski.itch.io/">
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
width="24"
|
|
height="24"
|
|
viewBox="0 0 24 24"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
stroke-width="2"
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
class="lucide lucide-gamepad"
|
|
>
|
|
<rect width="20" height="12" x="2" y="6" rx="2" />
|
|
<path d="M6 12h4m-2-2v4" />
|
|
<path d="M16 10h.01M20 10h.01" />
|
|
</svg>
|
|
</a>
|
|
</div>
|
|
<div class="flex gap-2 text-sm">
|
|
<p>Powered by loco.rs & Rust 🦀</p>
|
|
</div>
|
|
<div class="flex gap-2 text-sm">
|
|
<p class="font-semibold">
|
|
© Gabriel Kaszewski, 2024. All rights reserved.
|
|
</p>
|
|
<p>Made with 💗 in Poland</p>
|
|
<span class="flex-1"></span>
|
|
<a href="/projects">Projects</a>
|
|
<a href="https://blog.gabrielkaszewski.dev/" target="_blank">Blog</a>
|
|
<a href="/data">Files</a>
|
|
<a href="/login">Login</a>
|
|
</div>
|
|
</footer>
|