feat: fixed img bug, link colors
This commit is contained in:
parent
45f9005c4c
commit
416484b2bc
4 changed files with 14 additions and 9 deletions
|
|
@ -1,6 +1,11 @@
|
|||
<script>
|
||||
import { browser } from "$app/environment";
|
||||
import { browser } from "$app/environment";
|
||||
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>
|
||||
|
||||
<svelte:head>
|
||||
|
|
@ -54,7 +59,7 @@
|
|||
<img
|
||||
class="h-85 m-4 rounded-lg shadow-2xl"
|
||||
alt="mugshot of luka in a formal suit"
|
||||
src="/src/lib/assets/founder-mugshot.webp"
|
||||
src={founderImg}
|
||||
/>
|
||||
{/if}
|
||||
<div>
|
||||
|
|
@ -78,7 +83,7 @@
|
|||
<img
|
||||
class="h-85 m-4 rounded-lg shadow-2xl"
|
||||
alt="mugshot of luka in a t-shirt"
|
||||
src="/src/lib/assets/dev-mugshot.webp"
|
||||
src={devImg}
|
||||
/>
|
||||
{/if}
|
||||
<div>
|
||||
|
|
@ -101,7 +106,7 @@
|
|||
<img
|
||||
class="h-85 m-4 rounded-lg shadow-2xl"
|
||||
alt="mugshot of luka in a red sweater"
|
||||
src="/src/lib/assets/devops-mugshot.webp"
|
||||
src={devopsImg}
|
||||
/>
|
||||
{/if}
|
||||
<div>
|
||||
|
|
@ -124,7 +129,7 @@
|
|||
<img
|
||||
class="h-85 m-4 rounded-lg shadow-2xl"
|
||||
alt="mugshot of luka in semi-formal attire"
|
||||
src="/src/lib/assets/marketing-mugshot.webp"
|
||||
src={marketingImg}
|
||||
/>
|
||||
{/if}
|
||||
<div>
|
||||
|
|
@ -148,7 +153,7 @@
|
|||
<img
|
||||
class="h-85 m-4 rounded-lg shadow-2xl"
|
||||
alt="mirror selfie of luka"
|
||||
src="/src/lib/assets/ux-mugshot.webp"
|
||||
src={uxImg}
|
||||
/>
|
||||
{/if}
|
||||
<div>
|
||||
|
|
|
|||
|
|
@ -41,7 +41,7 @@
|
|||
{:else if domains.subdomains.length === 0}
|
||||
<tr>
|
||||
<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>
|
||||
</tr>
|
||||
{:else}
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@
|
|||
{#if emailSent}
|
||||
<div class="flex flex-col items-center justify-center w-full my-80">
|
||||
<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>
|
||||
{:else}
|
||||
<div class="flex flex-col items-center justify-center w-full my-48.5">
|
||||
|
|
|
|||
|
|
@ -48,7 +48,7 @@
|
|||
{#if emailSent}
|
||||
<div class="flex flex-col items-center justify-center w-full my-80">
|
||||
<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>
|
||||
{:else}
|
||||
<div class="flex flex-col items-center justify-center w-full my-40">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue