Add android utilities library card to projects

This commit is contained in:
Oskar Karpiński 2024-06-19 19:27:33 +02:00
parent 9b8133f610
commit cb3e0763d5
No known key found for this signature in database
GPG Key ID: A5FAC1E185C112DB
4 changed files with 26 additions and 4 deletions

View File

@ -0,0 +1,20 @@
<script>
import { Android } from "@steeze-ui/material-design-icons";
import { Icon } from "@steeze-ui/svelte-icon";
</script>
<a href="https://android.medzik.dev" target="_blank" class="max-w-xl w-full">
<div class="card variant-filled-primary bg-opacity-25 p-6 md:p-10 shadow-lg space-y-4 text-center btn whitespace-normal grid h-full">
<div class="mx-auto variant-filled-primary bg-opacity-50 rounded-2xl p-2" style="width: 50px; height: 50px;">
<Icon src={Android} />
</div>
<h3 class="h3">
Android Utilities Library
</h3>
<p class="opacity-85">
An Android Utilities Library for Developing Application (Jetpack Compose components/utils, Cryptography and more)
</p>
</div>
</a>

View File

@ -4,8 +4,8 @@
</script>
<a href="https://hsauth.medzik.dev" target="_blank" class="max-w-xl w-full">
<div class="card variant-filled-primary bg-opacity-25 p-6 md:p-10 shadow-lg space-y-4 text-center btn whitespace-normal grid h-full">
<div class="mx-auto variant-filled-primary bg-opacity-50 rounded-2xl p-2" style="width: 50px; height: 50px;">
<div class="card variant-filled-warning bg-opacity-25 p-6 md:p-10 shadow-lg space-y-4 text-center btn whitespace-normal grid h-full">
<div class="mx-auto variant-filled-warning bg-opacity-50 rounded-2xl p-2" style="width: 50px; height: 50px;">
<Icon src={Dns} />
</div>

View File

@ -4,8 +4,8 @@
</script>
<a href="https://github.com/M3DZIK/java-otp" target="_blank" class="max-w-xl w-full">
<div class="card variant-filled-secondary bg-opacity-25 p-6 md:p-10 shadow-lg space-y-4 text-center btn whitespace-normal grid h-full">
<div class="mx-auto variant-filled-secondary bg-opacity-50 rounded-2xl p-2" style="width: 50px; height: 50px;">
<div class="card variant-filled-success bg-opacity-25 p-6 md:p-10 shadow-lg space-y-4 text-center btn whitespace-normal grid h-full">
<div class="mx-auto variant-filled-success bg-opacity-50 rounded-2xl p-2" style="width: 50px; height: 50px;">
<Icon src={LockClock} />
</div>

View File

@ -4,6 +4,7 @@
import HSAuthProjectCard from '$lib/sections/projects/HSAuthProjectCard.svelte';
import LibrePassProjectCard from '$lib/sections/projects/LibrePassProjectCard.svelte';
import JavaOTPProjectCard from '$lib/sections/projects/JavaOTPProjectCard.svelte';
import AndroidUtilsCard from '$lib/sections/projects/AndroidUtilsCard.svelte';
</script>
<svelte:head>
@ -21,4 +22,5 @@
<LibrePassProjectCard />
<HSAuthProjectCard />
<JavaOTPProjectCard />
<AndroidUtilsCard />
</ProjectsCard>