feat: fixed img bug, link colors

This commit is contained in:
Luka Dekanozishvili 2026-01-30 18:49:55 +01:00
parent 45f9005c4c
commit 416484b2bc
4 changed files with 14 additions and 9 deletions

View file

@ -1,6 +1,11 @@
<script> <script>
import { browser } from "$app/environment"; import { browser } from "$app/environment";
import Phone from "$lib/Phone.svelte"; import Phone from "$lib/Phone.svelte";
import founderImg from '$lib/assets/founder-mugshot.webp';
import devImg from '$lib/assets/dev-mugshot.webp';
import devopsImg from '$lib/assets/devops-mugshot.webp';
import marketingImg from '$lib/assets/marketing-mugshot.webp';
import uxImg from '$lib/assets/ux-mugshot.webp';
</script> </script>
<svelte:head> <svelte:head>
@ -54,7 +59,7 @@
<img <img
class="h-85 m-4 rounded-lg shadow-2xl" class="h-85 m-4 rounded-lg shadow-2xl"
alt="mugshot of luka in a formal suit" alt="mugshot of luka in a formal suit"
src="/src/lib/assets/founder-mugshot.webp" src={founderImg}
/> />
{/if} {/if}
<div> <div>
@ -78,7 +83,7 @@
<img <img
class="h-85 m-4 rounded-lg shadow-2xl" class="h-85 m-4 rounded-lg shadow-2xl"
alt="mugshot of luka in a t-shirt" alt="mugshot of luka in a t-shirt"
src="/src/lib/assets/dev-mugshot.webp" src={devImg}
/> />
{/if} {/if}
<div> <div>
@ -101,7 +106,7 @@
<img <img
class="h-85 m-4 rounded-lg shadow-2xl" class="h-85 m-4 rounded-lg shadow-2xl"
alt="mugshot of luka in a red sweater" alt="mugshot of luka in a red sweater"
src="/src/lib/assets/devops-mugshot.webp" src={devopsImg}
/> />
{/if} {/if}
<div> <div>
@ -124,7 +129,7 @@
<img <img
class="h-85 m-4 rounded-lg shadow-2xl" class="h-85 m-4 rounded-lg shadow-2xl"
alt="mugshot of luka in semi-formal attire" alt="mugshot of luka in semi-formal attire"
src="/src/lib/assets/marketing-mugshot.webp" src={marketingImg}
/> />
{/if} {/if}
<div> <div>
@ -148,7 +153,7 @@
<img <img
class="h-85 m-4 rounded-lg shadow-2xl" class="h-85 m-4 rounded-lg shadow-2xl"
alt="mirror selfie of luka" alt="mirror selfie of luka"
src="/src/lib/assets/ux-mugshot.webp" src={uxImg}
/> />
{/if} {/if}
<div> <div>

View file

@ -41,7 +41,7 @@
{:else if domains.subdomains.length === 0} {:else if domains.subdomains.length === 0}
<tr> <tr>
<td colspan="6" class="text-center text-base-content/60"> <td colspan="6" class="text-center text-base-content/60">
No domains found. Register your first domain <a href="/dashboard/register-domain">here</a>! No domains found. Register your first domain <a class="link link-accent" href="/dashboard/register-domain">here</a>!
</td> </td>
</tr> </tr>
{:else} {:else}

View file

@ -44,7 +44,7 @@
{#if emailSent} {#if emailSent}
<div class="flex flex-col items-center justify-center w-full my-80"> <div class="flex flex-col items-center justify-center w-full my-80">
<h2 class="text-2xl text-primary-content">Email sent!</h2> <h2 class="text-2xl text-primary-content">Email sent!</h2>
<h3 class="text-xl text-primary-content">Please check <a href="mailto:" class="link link-primary">your inbox</a> to update your password.</h3> <h3 class="text-xl text-primary-content">Please check <a href="mailto:" class="link link-accent">your inbox</a> to update your password.</h3>
</div> </div>
{:else} {:else}
<div class="flex flex-col items-center justify-center w-full my-48.5"> <div class="flex flex-col items-center justify-center w-full my-48.5">

View file

@ -48,7 +48,7 @@
{#if emailSent} {#if emailSent}
<div class="flex flex-col items-center justify-center w-full my-80"> <div class="flex flex-col items-center justify-center w-full my-80">
<h2 class="text-2xl text-primary-content">Email sent!</h2> <h2 class="text-2xl text-primary-content">Email sent!</h2>
<h3 class="text-xl text-primary-content">Please check <a href="mailto:" class="link link-primary">your inbox</a> to confirm your account.</h3> <h3 class="text-xl text-primary-content">Please check <a href="mailto:" class="link link-accent">your inbox</a> to confirm your account.</h3>
</div> </div>
{:else} {:else}
<div class="flex flex-col items-center justify-center w-full my-40"> <div class="flex flex-col items-center justify-center w-full my-40">